summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-03-16 20:16:46 +0100
committerBram Moolenaar <Bram@vim.org>2012-03-16 20:16:46 +0100
commit5d3a8038b6a59e6f1b219f27ec77d6067e643ac1 (patch)
treef3de11f2e96de4d3895a11d2c140e848d31ba10d
parentdfba6b64495d389c9aec04f050ca7cbab01c0438 (diff)
downloadvim-git-7.3.475.tar.gz
updated for version 7.3.475v7.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)
-rw-r--r--src/syntax.c22
-rw-r--r--src/version.c2
2 files changed, 14 insertions, 10 deletions
diff --git a/src/syntax.c b/src/syntax.c
index d63c26018..7b045680d 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -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
@@ -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"),
@@ -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"),
diff --git a/src/version.c b/src/version.c
index 1f7a6307a..b514a5b6d 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 475,
+/**/
474,
/**/
473,