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/quickfix.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/quickfix.c')
-rw-r--r-- | src/quickfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quickfix.c b/src/quickfix.c index 8b61e10bc..61e96ddc4 100644 --- a/src/quickfix.c +++ b/src/quickfix.c @@ -2575,7 +2575,7 @@ 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) |