Skip to content

Commit b070297

Browse files
committed
Solarized broke c_space_errors in vim
The highlight group Error was changed to be bold red text. Unfortunately, c_space_errors highlights whitespace which has no text... so it remained un-highlighted effectively. Changed the group back to reverse text, which causes the background to be red, highlighting the whitespace.
1 parent e40cd41 commit b070297

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vim-colors-solarized/colors/solarized.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ exe "hi! Underlined" .s:fmt_none .s:fg_violet .s:bg_none
589589
exe "hi! Ignore" .s:fmt_none .s:fg_none .s:bg_none
590590
" *Ignore left blank, hidden |hl-Ignore|
591591

592-
exe "hi! Error" .s:fmt_bold .s:fg_red .s:bg_none
592+
exe "hi! Error" .s:fmt_revr .s:fg_red .s:bg_none
593593
" *Error any erroneous construct
594594

595595
exe "hi! Todo" .s:fmt_bold .s:fg_magenta.s:bg_none

0 commit comments

Comments
 (0)