diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-11-24 16:20:13 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-11-24 16:20:13 +0000 |
commit | e413ea04b716effb28eb49dbc98ad3f9f761545a (patch) | |
tree | 64c13d8b06ffb929eae3f814805077e93ecf7ecc /src/highlight.c | |
parent | 1f2453fec6f8f0f315f00ca7b562a02090cb1e37 (diff) | |
download | vim-git-e413ea04b716effb28eb49dbc98ad3f9f761545a.tar.gz |
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/highlight.c')
-rw-r--r-- | src/highlight.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/highlight.c b/src/highlight.c index 77ad0bc78..fe4f089ed 100644 --- a/src/highlight.c +++ b/src/highlight.c @@ -153,6 +153,8 @@ static char *(highlight_init_both[]) = { "lCursor guibg=fg guifg=bg", // should be different, but what? #endif "default link QuickFixLine Search", + "default link CursorLineSign SignColumn", + "default link CursorLineFold FoldColumn", CENT("Normal cterm=NONE", "Normal gui=NONE"), NULL }; |