From 15059af5216fa67b92f3fdd5a4e2dadd996a211e Mon Sep 17 00:00:00 2001 From: Ethan Schoonover Date: Tue, 3 May 2011 00:11:07 -0700 Subject: [vim] solarized.vim fix for bold colorshift in low color terminals Turn off bold, regardless of user setting in g:solarized_bold, if the terminal emulator reports t_Co < 16, otherwise color is distorted. --- colors/solarized.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/colors/solarized.vim b/colors/solarized.vim index eb18ef7..861ecea 100644 --- a/colors/solarized.vim +++ b/colors/solarized.vim @@ -4,7 +4,7 @@ " (see this url for latest release & screenshots) " License: OSI approved MIT license (see end of this file) " Created: In the middle of the night -" Modified: 2011 May 02 +" Modified: 2011 May 03 " " Usage "{{{ " @@ -409,7 +409,7 @@ endif "}}} " Overrides dependent on user specified values and environment "{{{ " --------------------------------------------------------------------- -if g:solarized_bold == 0 +if (g:solarized_bold == 0 || &t_Co < 16) let s:b = "" else let s:b = ",bold" -- cgit v1.2.3-70-g09d2