diff options
| author | Tommy Allen <tommy@esdf.io> | 2016-08-03 16:56:05 -0400 | 
|---|---|---|
| committer | Tommy Allen <tommy@esdf.io> | 2016-08-17 17:48:15 -0400 | 
| commit | 605e74327a406682f317d07e0097690fc1e577cb (patch) | |
| tree | cdc6c3f9ca936c15f6709925f4498baafcce9190 /src/nvim/syntax.c | |
| parent | dfb6a5133b92ffb38bfb7201e91f3de328652558 (diff) | |
| download | rneovim-605e74327a406682f317d07e0097690fc1e577cb.tar.gz rneovim-605e74327a406682f317d07e0097690fc1e577cb.tar.bz2 rneovim-605e74327a406682f317d07e0097690fc1e577cb.zip | |
highlight: Added QuickFixLine highlight group
- Links to Search by default
screen.c: Combine CursorLine with QuickFixLine
- HLF_QFL takes priority over HLF_CUL
docs: Updated to mention QuickFixLine
runtime: Added QuickFixLine to nvimHLGroup
tests: QuickFixLine highlight
Diffstat (limited to 'src/nvim/syntax.c')
| -rw-r--r-- | src/nvim/syntax.c | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c index 3215f7ea14..f7a8e4f8b9 100644 --- a/src/nvim/syntax.c +++ b/src/nvim/syntax.c @@ -5902,6 +5902,7 @@ static char *highlight_init_both[] =    "VertSplit    cterm=reverse gui=reverse",    "WildMenu     ctermbg=Yellow ctermfg=Black guibg=Yellow guifg=Black",    "default link EndOfBuffer NonText", +  "default link QuickFixLine Search",    NULL  }; | 
