summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2012-07-19 17:39:07 +0200
committerBram Moolenaar <bram@vim.org>2012-07-19 17:39:07 +0200
commit16390f980565f0ea1ce1b4aae2ef107af7dcad0e (patch)
treeda5958ecd0fc6206441a14f28646d3340941b75a
parent2785e6a1d4b1bc5c16efabcbdfca4f36576bd0f0 (diff)
downloadvim-16390f980565f0ea1ce1b4aae2ef107af7dcad0e.tar.gz
updated for version 7.3.607v7.3.607v7-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)
-rw-r--r--src/syntax.c4
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/syntax.c b/src/syntax.c
index b2b61027..59a2691a 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -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"),
diff --git a/src/version.c b/src/version.c
index cd0d2d7d..5dd3776c 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 */
/**/
+ 607,
+/**/
606,
/**/
605,