From 47549daf342a89e24b82ec1ce979faafdfe59611 Mon Sep 17 00:00:00 2001 From: Max Claus Nunes Date: Thu, 13 Jul 2017 20:06:37 -0300 Subject: [PATCH] Add QuickFixLine highlight group styling (#105) Supports `QuickFixLine` highlighting added in https://github.com/vim/vim/commit/2102035488e80ef6fd5038ed15d21672712ba0f6 and https://github.com/neovim/neovim/pull/5156. --- colors/onedark.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/colors/onedark.vim b/colors/onedark.vim index ff7be79..1e18c85 100644 --- a/colors/onedark.vim +++ b/colors/onedark.vim @@ -201,7 +201,8 @@ call s:h("PmenuSel", { "fg": s:black, "bg": s:blue }) " Popup menu: selected ite call s:h("PmenuSbar", { "bg": s:special_grey }) " Popup menu: scrollbar. call s:h("PmenuThumb", { "bg": s:white }) " Popup menu: Thumb of the scrollbar. call s:h("Question", { "fg": s:purple }) " hit-enter prompt and yes/no questions -call s:h("Search", { "fg": s:black, "bg": s:yellow }) " Last search pattern highlighting (see 'hlsearch'). Also used for highlighting the current line in the quickfix window and similar items that need to stand out. +call s:h("Search", { "fg": s:black, "bg": s:yellow }) " Last search pattern highlighting (see 'hlsearch'). Also used by few other items that need to stand out. +call s:h("QuickFixLine", { "fg": s:black, "bg": s:yellow }) " Used for highlighting the current line in the quickfix window. call s:h("SpecialKey", { "fg": s:special_grey }) " Meta and special keys listed with ":map", also for text used to show unprintable characters in the text, 'listchars'. Generally: text that is displayed differently from what it really is. call s:h("SpellBad", { "fg": s:red, "gui": "underline", "cterm": "underline" }) " Word that is not recognized by the spellchecker. This will be combined with the highlighting used otherwise. call s:h("SpellCap", { "fg": s:dark_yellow }) " Word that should start with a capital. This will be combined with the highlighting used otherwise.