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/vim.h | |
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/vim.h')
-rw-r--r-- | src/vim.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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', \ |