1
0
forked from aniani/vim

updated for version 7.3.607

Problem:    With an 8 color terminal the selected menu item is black on black,
            because darkGrey as bg is the same as black.
Solution:   Swap fg and bg colors. (James McCoy)
This commit is contained in:
Bram Moolenaar 2012-07-19 17:39:07 +02:00
parent 94c465c53d
commit 049d8e79cf
2 changed files with 4 additions and 2 deletions

View File

@ -6653,8 +6653,8 @@ static char *(highlight_init_dark[]) =
"PmenuThumb ctermbg=White guibg=White"),
CENT("Pmenu ctermbg=Magenta ctermfg=Black",
"Pmenu ctermbg=Magenta ctermfg=Black guibg=Magenta"),
CENT("PmenuSel ctermbg=DarkGrey ctermfg=Black",
"PmenuSel ctermbg=DarkGrey ctermfg=Black guibg=DarkGrey"),
CENT("PmenuSel ctermbg=Black ctermfg=DarkGrey",
"PmenuSel ctermbg=Black ctermfg=DarkGrey guibg=DarkGrey"),
#endif
CENT("Title term=bold ctermfg=LightMagenta",
"Title term=bold ctermfg=LightMagenta gui=bold guifg=Magenta"),

View File

@ -714,6 +714,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
607,
/**/
606,
/**/