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/quickfix.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/quickfix.c')
| -rw-r--r-- | src/nvim/quickfix.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index dfd795b0ba..ba2d795eef 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -1764,7 +1764,7 @@ void qf_list(exarg_T *eap)          vim_snprintf((char *)IObuff, IOSIZE, "%2d %s",              i, (char *)fname);        msg_outtrans_attr(IObuff, i == qi->qf_lists[qi->qf_curlist].qf_index -          ? hl_attr(HLF_L) : hl_attr(HLF_D)); +          ? hl_attr(HLF_QFL) : hl_attr(HLF_D));        if (qfp->qf_lnum == 0)          IObuff[0] = NUL;        else if (qfp->qf_col == 0) | 
