diff src/screen.c @ 11516:80491a71c716 v8.0.0641

patch 8.0.0641: cannot set a separate highlighting for the quickfix line commit https://github.com/vim/vim/commit/2102035488e80ef6fd5038ed15d21672712ba0f6 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jun 13 17:21:04 2017 +0200 patch 8.0.0641: cannot set a separate highlighting for the quickfix line Problem: Cannot set a separate highlighting for the current line in the quickfix window. Solution: Add QuickFixLine. (anishsane, closes #1755)
author Christian Brabandt <cb@256bit.org>
date Tue, 13 Jun 2017 17:30:03 +0200
parents d1b6cf96882a
children 578df034735d
line wrap: on
line diff
--- a/src/screen.c
+++ b/src/screen.c
@@ -3371,7 +3371,7 @@ win_line(
 # if defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)
     /* Highlight the current line in the quickfix window. */
     if (bt_quickfix(wp->w_buffer) && qf_current_entry(wp) == lnum)
-	line_attr = HL_ATTR(HLF_L);
+	line_attr = HL_ATTR(HLF_QFL);
 # endif
     if (line_attr != 0)
 	area_highlighting = TRUE;