diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-06-13 17:21:04 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-06-13 17:21:04 +0200 |
commit | 2102035488e80ef6fd5038ed15d21672712ba0f6 (patch) | |
tree | 5e434d7a33423cc7ce99c58872a6edf92a85261e /src/syntax.c | |
parent | 83064068eaabf75a7d235b0eec561dccbcb96b31 (diff) | |
download | vim-git-2102035488e80ef6fd5038ed15d21672712ba0f6.tar.gz |
patch 8.0.0641: cannot set a separate highlighting for the quickfix linev8.0.0641
Problem: Cannot set a separate highlighting for the current line in the
quickfix window.
Solution: Add QuickFixLine. (anishsane, closes #1755)
Diffstat (limited to 'src/syntax.c')
-rw-r--r-- | src/syntax.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/syntax.c b/src/syntax.c index 225853e4e..56d69c6df 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -6970,6 +6970,8 @@ static char *(highlight_init_light[]) = #ifdef FEAT_GUI "Normal gui=NONE", #endif + CENT("QuickFixLine term=reverse ctermbg=Cyan", + "QuickFixLine term=reverse ctermbg=Cyan guibg=Cyan"), NULL }; @@ -7055,6 +7057,8 @@ static char *(highlight_init_dark[]) = CENT("Conceal ctermbg=DarkGrey ctermfg=LightGrey", "Conceal ctermbg=DarkGrey ctermfg=LightGrey guibg=DarkGrey guifg=LightGrey"), #endif + CENT("QuickFixLine term=reverse ctermbg=Cyan", + "QuickFixLine term=reverse ctermbg=Cyan guibg=Cyan"), #ifdef FEAT_GUI "Normal gui=NONE", #endif |