Set WildMenu in flat variant the same as PmenuSel.

This commit is contained in:
Lifepillar
2016-05-21 18:15:16 +02:00
parent 27f6beb400
commit 21d39005ec
3 changed files with 11 additions and 3 deletions

View File

@@ -317,7 +317,15 @@ for s:solarized_background in ["dark", "light"]
call s:put("hi! Title" .s:fmt_bold .s:fg_orange .s:bg_none)
call s:put("hi! VisualNOS" .s:fg_none .s:bg_base02 .s:fmt_revbb)
call s:put("hi! WarningMsg" .s:fmt_bold .s:fg_red .s:bg_none)
call s:put("hi! WildMenu" .s:fg_base2 .s:bg_base02 .s:fmt_revbb)
if s:solarized_contrast == "flat"
if s:solarized_background == "dark"
call s:put("hi! WildMenu" .s:fg_base02 .s:bg_base2 .s:fmt_revbb)
else
call s:put("hi! WildMenu" .s:fg_base01 .s:bg_base03 .s:fmt_revbb)
endif
else
call s:put("hi! WildMenu" .s:fg_base2 .s:bg_base02 .s:fmt_revbb)
endif
call s:put("hi! Folded" .s:fmt_undb .s:fg_base0 .s:bg_base02 .s:sp_base03)
call s:put("hi! FoldColumn" .s:fmt_none .s:fg_base0 .s:bg_base02)
call s:put('if get(g:, "solarized_diffmode", "") == "high"')