Skip to content

Commit

Permalink
updated for version 7.3.475
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
brammool committed Mar 16, 2012
1 parent dfba6b6 commit 5d3a803
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
22 changes: 12 additions & 10 deletions src/syntax.c
Expand Up @@ -6516,8 +6516,6 @@ static char *(highlight_init_both[]) =
"DiffText term=reverse cterm=bold ctermbg=Red gui=bold guibg=Red"),
#endif
#ifdef FEAT_INS_EXPAND
CENT("PmenuThumb cterm=reverse",
"PmenuThumb cterm=reverse gui=reverse"),
CENT("PmenuSbar ctermbg=Grey",
"PmenuSbar ctermbg=Grey guibg=Grey"),
#endif
Expand Down Expand Up @@ -6557,10 +6555,12 @@ static char *(highlight_init_light[]) =
"SpellLocal term=underline ctermbg=Cyan guisp=DarkCyan gui=undercurl"),
#endif
#ifdef FEAT_INS_EXPAND
CENT("Pmenu ctermbg=LightMagenta",
"Pmenu ctermbg=LightMagenta guibg=LightMagenta"),
CENT("PmenuSel ctermbg=LightGrey",
"PmenuSel ctermbg=LightGrey guibg=Grey"),
CENT("PmenuThumb ctermbg=Black",
"PmenuThumb ctermbg=Black guibg=Black"),
CENT("Pmenu ctermbg=LightMagenta ctermfg=Black",
"Pmenu ctermbg=LightMagenta ctermfg=Black guibg=LightMagenta"),
CENT("PmenuSel ctermbg=LightGrey ctermfg=Black",
"PmenuSel ctermbg=LightGrey ctermfg=Black guibg=Grey"),
#endif
CENT("SpecialKey term=bold ctermfg=DarkBlue",
"SpecialKey term=bold ctermfg=DarkBlue guifg=Blue"),
Expand Down Expand Up @@ -6645,10 +6645,12 @@ static char *(highlight_init_dark[]) =
"SpellLocal term=underline ctermbg=Cyan guisp=Cyan gui=undercurl"),
#endif
#ifdef FEAT_INS_EXPAND
CENT("Pmenu ctermbg=Magenta",
"Pmenu ctermbg=Magenta guibg=Magenta"),
CENT("PmenuSel ctermbg=DarkGrey",
"PmenuSel ctermbg=DarkGrey guibg=DarkGrey"),
CENT("PmenuThumb ctermbg=White",
"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"),
#endif
CENT("Title term=bold ctermfg=LightMagenta",
"Title term=bold ctermfg=LightMagenta gui=bold guifg=Magenta"),
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -714,6 +714,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
475,
/**/
474,
/**/
Expand Down

0 comments on commit 5d3a803

Please sign in to comment.