summaryrefslogtreecommitdiffstats
path: root/src/vim.h
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/vim.h
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/vim.h')
-rw-r--r--src/vim.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/vim.h b/src/vim.h
index 6c5a1099c3..7c4d12c93d 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -1411,6 +1411,8 @@ typedef enum
, HLF_LNA // LineNrAbove
, HLF_LNB // LineNrBelow
, HLF_CLN // current line number
+ , 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
@@ -1451,7 +1453,7 @@ typedef enum
// The HL_FLAGS must be in the same order as the HLF_ enums!
// When changing this also adjust the default for 'highlight'.
#define HL_FLAGS {'8', '~', '@', 'd', 'e', 'h', 'i', 'l', 'm', 'M', \
- 'n', 'a', 'b', 'N', 'r', 's', 'S', 'c', 't', 'v', 'V', \
+ 'n', 'a', 'b', 'N', 'G', 'O', 'r', 's', 'S', 'c', 't', 'v', 'V', \
'w', 'W', 'f', 'F', 'A', 'C', 'D', 'T', '-', '>', \
'B', 'P', 'R', 'L', \
'+', '=', 'x', 'X', '*', '#', '_', '!', '.', 'o', 'q', \