forked from aniani/vim
updated for version 7.3.475
Problem: In a terminal with few colors the omnicomplete menu may be hard to see when using the default colors. Solution: Use more explicit colors. (suggested by Alex Henrie)
This commit is contained in:
22
src/syntax.c
22
src/syntax.c
@@ -6516,8 +6516,6 @@ static char *(highlight_init_both[]) =
|
|||||||
"DiffText term=reverse cterm=bold ctermbg=Red gui=bold guibg=Red"),
|
"DiffText term=reverse cterm=bold ctermbg=Red gui=bold guibg=Red"),
|
||||||
#endif
|
#endif
|
||||||
#ifdef FEAT_INS_EXPAND
|
#ifdef FEAT_INS_EXPAND
|
||||||
CENT("PmenuThumb cterm=reverse",
|
|
||||||
"PmenuThumb cterm=reverse gui=reverse"),
|
|
||||||
CENT("PmenuSbar ctermbg=Grey",
|
CENT("PmenuSbar ctermbg=Grey",
|
||||||
"PmenuSbar ctermbg=Grey guibg=Grey"),
|
"PmenuSbar ctermbg=Grey guibg=Grey"),
|
||||||
#endif
|
#endif
|
||||||
@@ -6557,10 +6555,12 @@ static char *(highlight_init_light[]) =
|
|||||||
"SpellLocal term=underline ctermbg=Cyan guisp=DarkCyan gui=undercurl"),
|
"SpellLocal term=underline ctermbg=Cyan guisp=DarkCyan gui=undercurl"),
|
||||||
#endif
|
#endif
|
||||||
#ifdef FEAT_INS_EXPAND
|
#ifdef FEAT_INS_EXPAND
|
||||||
CENT("Pmenu ctermbg=LightMagenta",
|
CENT("PmenuThumb ctermbg=Black",
|
||||||
"Pmenu ctermbg=LightMagenta guibg=LightMagenta"),
|
"PmenuThumb ctermbg=Black guibg=Black"),
|
||||||
CENT("PmenuSel ctermbg=LightGrey",
|
CENT("Pmenu ctermbg=LightMagenta ctermfg=Black",
|
||||||
"PmenuSel ctermbg=LightGrey guibg=Grey"),
|
"Pmenu ctermbg=LightMagenta ctermfg=Black guibg=LightMagenta"),
|
||||||
|
CENT("PmenuSel ctermbg=LightGrey ctermfg=Black",
|
||||||
|
"PmenuSel ctermbg=LightGrey ctermfg=Black guibg=Grey"),
|
||||||
#endif
|
#endif
|
||||||
CENT("SpecialKey term=bold ctermfg=DarkBlue",
|
CENT("SpecialKey term=bold ctermfg=DarkBlue",
|
||||||
"SpecialKey term=bold ctermfg=DarkBlue guifg=Blue"),
|
"SpecialKey term=bold ctermfg=DarkBlue guifg=Blue"),
|
||||||
@@ -6645,10 +6645,12 @@ static char *(highlight_init_dark[]) =
|
|||||||
"SpellLocal term=underline ctermbg=Cyan guisp=Cyan gui=undercurl"),
|
"SpellLocal term=underline ctermbg=Cyan guisp=Cyan gui=undercurl"),
|
||||||
#endif
|
#endif
|
||||||
#ifdef FEAT_INS_EXPAND
|
#ifdef FEAT_INS_EXPAND
|
||||||
CENT("Pmenu ctermbg=Magenta",
|
CENT("PmenuThumb ctermbg=White",
|
||||||
"Pmenu ctermbg=Magenta guibg=Magenta"),
|
"PmenuThumb ctermbg=White guibg=White"),
|
||||||
CENT("PmenuSel ctermbg=DarkGrey",
|
CENT("Pmenu ctermbg=Magenta ctermfg=Black",
|
||||||
"PmenuSel ctermbg=DarkGrey guibg=DarkGrey"),
|
"Pmenu ctermbg=Magenta ctermfg=Black guibg=Magenta"),
|
||||||
|
CENT("PmenuSel ctermbg=DarkGrey ctermfg=Black",
|
||||||
|
"PmenuSel ctermbg=DarkGrey ctermfg=Black guibg=DarkGrey"),
|
||||||
#endif
|
#endif
|
||||||
CENT("Title term=bold ctermfg=LightMagenta",
|
CENT("Title term=bold ctermfg=LightMagenta",
|
||||||
"Title term=bold ctermfg=LightMagenta gui=bold guifg=Magenta"),
|
"Title term=bold ctermfg=LightMagenta gui=bold guifg=Magenta"),
|
||||||
|
@@ -714,6 +714,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
475,
|
||||||
/**/
|
/**/
|
||||||
474,
|
474,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user