From 0934570f36c00c0fb11706f87842e626414bfa70 Mon Sep 17 00:00:00 2001 From: Denis Kurilenko Date: Mon, 21 Nov 2016 20:25:04 +0300 Subject: [PATCH] Better selection color (#63) Better selection color for PmenuSel and WildMenu. Fixes #62. --- colors/onedark.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/colors/onedark.vim b/colors/onedark.vim index 936e40b..936edfa 100644 --- a/colors/onedark.vim +++ b/colors/onedark.vim @@ -198,7 +198,7 @@ call s:h("MoreMsg", {}) " more-prompt call s:h("NonText", { "fg": s:special_grey }) " '~' and '@' at the end of the window, characters from 'showbreak' and other characters that do not really exist in the text (e.g., ">" displayed when a double-wide character doesn't fit at the end of the line). call s:h("Normal", { "fg": s:white, "bg": s:black }) " normal text call s:h("Pmenu", { "bg": s:menu_grey }) " Popup menu: normal item. -call s:h("PmenuSel", { "bg": s:black }) " Popup menu: selected item. +call s:h("PmenuSel", { "fg": s:black, "bg": s:blue }) " Popup menu: selected item. 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 @@ -217,7 +217,7 @@ call s:h("Title", { "fg": s:green }) " titles for output from ":set all", ":auto call s:h("Visual", { "fg": s:visual_black, "bg": s:visual_grey }) " Visual mode selection call s:h("VisualNOS", { "bg": s:visual_grey }) " Visual mode selection when vim is "Not Owning the Selection". Only X11 Gui's gui-x11 and xterm-clipboard supports this. call s:h("WarningMsg", { "fg": s:red }) " warning messages -call s:h("WildMenu", {}) " current match in 'wildmenu' completion +call s:h("WildMenu", { "fg": s:black, "bg": s:blue }) " current match in 'wildmenu' completion " +--------------------------------+ " | Language-Specific Highlighting |