From ee8c9589545a49389e8f82007b067a0427be508d Mon Sep 17 00:00:00 2001 From: Josh Dick Date: Wed, 11 May 2016 19:15:09 -0400 Subject: [PATCH] Tweak menu styling. Fixes #32. --- colors/onedark.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/colors/onedark.vim b/colors/onedark.vim index 447eb50..f7a514e 100644 --- a/colors/onedark.vim +++ b/colors/onedark.vim @@ -188,9 +188,9 @@ call s:h("ModeMsg", {}) " 'showmode' message (e.g., "-- INSERT --") 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", {}) " Popup menu: normal item. -call s:h("PmenuSel", { "bg": s:menu_grey }) " Popup menu: selected item. -call s:h("PmenuSbar", { "bg": s:menu_grey }) " Popup menu: scrollbar. +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("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:visual_black, "bg": s:visual_grey }) " 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.