aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/highlight_defs.h
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2021-12-09 21:29:15 -0500
committerGitHub <noreply@github.com>2021-12-09 21:29:15 -0500
commitac2d140a33dfe88f882218e15a443b8300cca6b2 (patch)
treee2b724239fa4105e04c15ff964da033a82afa369 /src/nvim/highlight_defs.h
parent238da85126c5a1dee03a75b6023a36a9a3642dda (diff)
parentf3fb77c40262f47e30ebefec547f5c6f83ff58e6 (diff)
downloadrneovim-ac2d140a33dfe88f882218e15a443b8300cca6b2.tar.gz
rneovim-ac2d140a33dfe88f882218e15a443b8300cca6b2.tar.bz2
rneovim-ac2d140a33dfe88f882218e15a443b8300cca6b2.zip
Merge pull request #16541 from jamessan/vim-8.2.3664
vim-patch:8.2.3664,8.2.3743,8.2.3747,8.2.3748,8.2.3757
Diffstat (limited to 'src/nvim/highlight_defs.h')
-rw-r--r--src/nvim/highlight_defs.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/highlight_defs.h b/src/nvim/highlight_defs.h
index d4d53c4126..50a03e0c02 100644
--- a/src/nvim/highlight_defs.h
+++ b/src/nvim/highlight_defs.h
@@ -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",