diff options
author | Arctic Ice Studio <development@arcticicestudio.com> | 2017-12-05 14:22:47 +0100 |
---|---|---|
committer | Arctic Ice Studio <development@arcticicestudio.com> | 2017-12-05 14:22:47 +0100 |
commit | 59ccb8dc13c96e822713644947fa4378b65ecc89 (patch) | |
tree | 8e5f0434465c3d8ee6f9080d4ee4fe69f4accb73 /colors | |
parent | fa09c3b1da5482565f5f20ca78abde2a5f64a8a7 (diff) | |
download | nord-vim-59ccb8dc13c96e822713644947fa4378b65ecc89.tar.gz |
Fix wildmenu background color (menu tab completion)
The implemented feature in this GH-58 changed the background color of
the status bar ("StatusLine") group to "nord3", but the "WildMenu" group
also useed "nord3" as background color for the current tab selection.
This commit changes the "WildMenu" background color to "nord1" which is
available for both terminal ("nord1_term") and GUI ("nord1_gui") mode.
Related to GH-58
GH-64
Diffstat (limited to 'colors')
-rwxr-xr-x | colors/nord.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/colors/nord.vim b/colors/nord.vim index 4a7ad85..0c48df6 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -191,7 +191,7 @@ else call s:hi("StatusLineNC", s:nord4_gui, s:nord3_gui, "NONE", s:nord3_term, "NONE", "") endif call s:hi("WarningMsg", s:nord0_gui, s:nord13_gui, s:nord1_term, s:nord13_term, "", "") -call s:hi("WildMenu", s:nord8_gui, s:nord3_gui, s:nord8_term, s:nord3_term, "", "") +call s:hi("WildMenu", s:nord8_gui, s:nord1_gui, s:nord8_term, s:nord1_term, "", "") "+--- Search ---+ call s:hi("IncSearch", s:nord1_gui, s:nord8_gui, s:nord1_term, s:nord8_term, "underline", "") |