mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 06:46:07 +00:00
vim-patch:8.2.3664: cannot adjust sign highlighting for 'cursorline'
Problem: Cannot adjust sign highlighting for 'cursorline'.
Solution: Add CursorLineSign and CursorLineFold highlight groups.
(Gregory Anders, closes vim/vim#9201)
e413ea04b7
This commit is contained in:
@@ -65,6 +65,8 @@ typedef enum {
|
||||
HLF_LNA, // LineNrAbove
|
||||
HLF_LNB, // LineNrBelow
|
||||
HLF_CLN, // current line number when 'cursorline' is set
|
||||
HLF_CLS, // current line sign column
|
||||
HLF_CLF, // current line fold
|
||||
HLF_R, // return to continue message and yes/no questions
|
||||
HLF_S, // status lines
|
||||
HLF_SNC, // status lines of not-current windows
|
||||
@@ -122,6 +124,8 @@ EXTERN const char *hlf_names[] INIT(= {
|
||||
[HLF_LNA] = "LineNrAbove",
|
||||
[HLF_LNB] = "LineNrBelow",
|
||||
[HLF_CLN] = "CursorLineNr",
|
||||
[HLF_CLS] = "CursorLineSign",
|
||||
[HLF_CLF] = "CursorLineFold",
|
||||
[HLF_R] = "Question",
|
||||
[HLF_S] = "StatusLine",
|
||||
[HLF_SNC] = "StatusLineNC",
|
||||
|
Reference in New Issue
Block a user