summaryrefslogtreecommitdiffstats
path: root/src/proto/sign.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-11-24 16:20:13 +0000
committerBram Moolenaar <Bram@vim.org>2021-11-24 16:20:13 +0000
commite413ea04b716effb28eb49dbc98ad3f9f761545a (patch)
tree64c13d8b06ffb929eae3f814805077e93ecf7ecc /src/proto/sign.pro
parent1f2453fec6f8f0f315f00ca7b562a02090cb1e37 (diff)
patch 8.2.3664: cannot adjust sign highlighting for 'cursorline'v8.2.3664
Problem: Cannot adjust sign highlighting for 'cursorline'. Solution: Add CursorLineSign and CursorLineFold highlight groups. (Gregory Anders, closes #9201)
Diffstat (limited to 'src/proto/sign.pro')
-rw-r--r--src/proto/sign.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/sign.pro b/src/proto/sign.pro
index bda8372a24..4e8abb3845 100644
--- a/src/proto/sign.pro
+++ b/src/proto/sign.pro
@@ -8,7 +8,7 @@ int buf_findsigntype_id(buf_T *buf, linenr_T lnum, int typenr);
int buf_signcount(buf_T *buf, linenr_T lnum);
void buf_delete_signs(buf_T *buf, char_u *group);
void sign_mark_adjust(linenr_T line1, linenr_T line2, long amount, long amount_after);
-int sign_define_by_name(char_u *name, char_u *icon, char_u *linehl, char_u *text, char_u *texthl);
+int sign_define_by_name(char_u *name, char_u *icon, char_u *linehl, char_u *text, char_u *texthl, char_u *culhl);
int sign_exists_by_name(char_u *name);
int sign_undefine_by_name(char_u *name, int give_error);
int sign_place(int *sign_id, char_u *sign_group, char_u *sign_name, buf_T *buf, linenr_T lnum, int prio);