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/vim.h | |
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/vim.h')
-rw-r--r-- | src/vim.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1433,6 +1433,7 @@ typedef enum , HLF_CUC /* 'cursurcolumn' */ , HLF_CUL /* 'cursurline' */ , HLF_MC /* 'colorcolumn' */ + , HLF_QFL /* quickfix window line currently selected */ , HLF_COUNT /* MUST be the last one */ } hlf_T; @@ -1442,7 +1443,7 @@ typedef enum 'n', 'N', 'r', 's', 'S', 'c', 't', 'v', 'V', 'w', 'W', \ 'f', 'F', 'A', 'C', 'D', 'T', '-', '>', \ 'B', 'P', 'R', 'L', \ - '+', '=', 'x', 'X', '*', '#', '_', '!', '.', 'o'} + '+', '=', 'x', 'X', '*', '#', '_', '!', '.', 'o', 'q'} /* * Boolean constants |