• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revisão2f9308b31181f36bf605ee060fa763a28deacb03 (tree)
Hora2008-08-06 22:28:57
Autorvimboss
Commitervimboss

Mensagem de Log

updated for version 7.2b-030

Mudança Sumário

Diff

diff -r 0c4a465bd741 -r 2f9308b31181 src/syntax.c
--- a/src/syntax.c Wed Aug 06 13:03:07 2008 +0000
+++ b/src/syntax.c Wed Aug 06 13:28:57 2008 +0000
@@ -6459,13 +6459,16 @@
64596459 /* Reverse looks ugly, but grey may not work for 8 colors. Thus let it
64606460 * depend on the number of colors available.
64616461 * With 8 colors brown is equal to yellow, need to use black for Search fg
6462- * to avoid Statement highlighted text disappears. */
6462+ * to avoid Statement highlighted text disappears.
6463+ * Clear the attributes, needed when changing the t_Co value. */
64636464 if (t_colors > 8)
6464- do_highlight((char_u *)(*p_bg == 'l' ? "Visual ctermbg=LightGrey"
6465- : "Visual ctermbg=DarkGrey"), FALSE, TRUE);
6465+ do_highlight((char_u *)(*p_bg == 'l'
6466+ ? "Visual cterm=NONE ctermbg=LightGrey"
6467+ : "Visual cterm=NONE ctermbg=DarkGrey"), FALSE, TRUE);
64666468 else
64676469 {
6468- do_highlight((char_u *)"Visual cterm=reverse", FALSE, TRUE);
6470+ do_highlight((char_u *)"Visual cterm=reverse ctermbg=NONE",
6471+ FALSE, TRUE);
64696472 if (*p_bg == 'l')
64706473 do_highlight((char_u *)"Search ctermfg=black", FALSE, TRUE);
64716474 }
diff -r 0c4a465bd741 -r 2f9308b31181 src/version.c
--- a/src/version.c Wed Aug 06 13:03:07 2008 +0000
+++ b/src/version.c Wed Aug 06 13:28:57 2008 +0000
@@ -677,6 +677,8 @@
677677 static int included_patches[] =
678678 { /* Add new patch number below this line */
679679 /**/
680+ 30,
681+/**/
680682 29,
681683 /**/
682684 28,
Show on old repository browser