|
Karsten Hopp |
0c0392 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
0c0392 |
Subject: Patch 7.3.607
|
|
Karsten Hopp |
0c0392 |
Fcc: outbox
|
|
Karsten Hopp |
0c0392 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
0c0392 |
Mime-Version: 1.0
|
|
Karsten Hopp |
0c0392 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
0c0392 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
0c0392 |
------------
|
|
Karsten Hopp |
0c0392 |
|
|
Karsten Hopp |
0c0392 |
Patch 7.3.607
|
|
Karsten Hopp |
0c0392 |
Problem: With an 8 color terminal the selected menu item is black on black,
|
|
Karsten Hopp |
0c0392 |
because darkGrey as bg is the same as black.
|
|
Karsten Hopp |
0c0392 |
Solution: Swap fg and bg colors. (James McCoy)
|
|
Karsten Hopp |
0c0392 |
Files: src/syntax.c
|
|
Karsten Hopp |
0c0392 |
|
|
Karsten Hopp |
0c0392 |
|
|
Karsten Hopp |
0c0392 |
*** ../vim-7.3.606/src/syntax.c 2012-06-01 13:18:48.000000000 +0200
|
|
Karsten Hopp |
0c0392 |
--- src/syntax.c 2012-07-19 17:34:42.000000000 +0200
|
|
Karsten Hopp |
0c0392 |
***************
|
|
Karsten Hopp |
0c0392 |
*** 6653,6660 ****
|
|
Karsten Hopp |
0c0392 |
"PmenuThumb ctermbg=White guibg=White"),
|
|
Karsten Hopp |
0c0392 |
CENT("Pmenu ctermbg=Magenta ctermfg=Black",
|
|
Karsten Hopp |
0c0392 |
"Pmenu ctermbg=Magenta ctermfg=Black guibg=Magenta"),
|
|
Karsten Hopp |
0c0392 |
! CENT("PmenuSel ctermbg=DarkGrey ctermfg=Black",
|
|
Karsten Hopp |
0c0392 |
! "PmenuSel ctermbg=DarkGrey ctermfg=Black guibg=DarkGrey"),
|
|
Karsten Hopp |
0c0392 |
#endif
|
|
Karsten Hopp |
0c0392 |
CENT("Title term=bold ctermfg=LightMagenta",
|
|
Karsten Hopp |
0c0392 |
"Title term=bold ctermfg=LightMagenta gui=bold guifg=Magenta"),
|
|
Karsten Hopp |
0c0392 |
--- 6653,6660 ----
|
|
Karsten Hopp |
0c0392 |
"PmenuThumb ctermbg=White guibg=White"),
|
|
Karsten Hopp |
0c0392 |
CENT("Pmenu ctermbg=Magenta ctermfg=Black",
|
|
Karsten Hopp |
0c0392 |
"Pmenu ctermbg=Magenta ctermfg=Black guibg=Magenta"),
|
|
Karsten Hopp |
0c0392 |
! CENT("PmenuSel ctermbg=Black ctermfg=DarkGrey",
|
|
Karsten Hopp |
0c0392 |
! "PmenuSel ctermbg=Black ctermfg=DarkGrey guibg=DarkGrey"),
|
|
Karsten Hopp |
0c0392 |
#endif
|
|
Karsten Hopp |
0c0392 |
CENT("Title term=bold ctermfg=LightMagenta",
|
|
Karsten Hopp |
0c0392 |
"Title term=bold ctermfg=LightMagenta gui=bold guifg=Magenta"),
|
|
Karsten Hopp |
0c0392 |
*** ../vim-7.3.606/src/version.c 2012-07-19 17:18:21.000000000 +0200
|
|
Karsten Hopp |
0c0392 |
--- src/version.c 2012-07-19 17:38:05.000000000 +0200
|
|
Karsten Hopp |
0c0392 |
***************
|
|
Karsten Hopp |
0c0392 |
*** 716,717 ****
|
|
Karsten Hopp |
0c0392 |
--- 716,719 ----
|
|
Karsten Hopp |
0c0392 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
0c0392 |
+ /**/
|
|
Karsten Hopp |
0c0392 |
+ 607,
|
|
Karsten Hopp |
0c0392 |
/**/
|
|
Karsten Hopp |
0c0392 |
|
|
Karsten Hopp |
0c0392 |
--
|
|
Karsten Hopp |
0c0392 |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
0c0392 |
152. You find yourself falling for someone you've never seen or hardly
|
|
Karsten Hopp |
0c0392 |
know, but, boy can he/she TYPE!!!!!!
|
|
Karsten Hopp |
0c0392 |
|
|
Karsten Hopp |
0c0392 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
0c0392 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
0c0392 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
0c0392 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|