diff options
Diffstat (limited to 'src/nvim/decoration.h')
-rw-r--r-- | src/nvim/decoration.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nvim/decoration.h b/src/nvim/decoration.h index 2e224135ed..dacdc7683a 100644 --- a/src/nvim/decoration.h +++ b/src/nvim/decoration.h @@ -60,7 +60,9 @@ struct Decoration { int col; // fixed col value, like win_col int virt_text_width; // width of virt_text char *sign_text; + char *sign_name; int sign_hl_id; + int sign_add_id; int number_hl_id; int line_hl_id; int cursorline_hl_id; @@ -71,7 +73,7 @@ struct Decoration { }; #define DECORATION_INIT { KV_INITIAL_VALUE, KV_INITIAL_VALUE, 0, kVTEndOfLine, \ kHlModeUnknown, false, false, false, false, kNone, \ - DECOR_PRIORITY_BASE, 0, 0, NULL, 0, 0, 0, 0, 0, false } + DECOR_PRIORITY_BASE, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, false } typedef struct { int start_row; |