File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -102,8 +102,8 @@ function! indent_guides#basic_highlight_colors()
102
102
let l: cterm_colors = (&g: background == ' dark' ) ? [' darkgrey' , ' black' ] : [' lightgrey' , ' white' ]
103
103
let l: gui_colors = (&g: background == ' dark' ) ? [' grey15' , ' grey30' ] : [' grey70' , ' grey85' ]
104
104
105
- exe ' hi IndentGuidesEven guibg=' . l: gui_colors [0 ] . ' ctermbg=' . l: cterm_colors [0 ]
106
- exe ' hi IndentGuidesOdd guibg=' . l: gui_colors [1 ] . ' ctermbg=' . l: cterm_colors [1 ]
105
+ exe ' hi IndentGuidesEven guibg=' . l: gui_colors [0 ] . ' guifg= ' . l: gui_colors [ 1 ] . ' ctermbg=' . l: cterm_colors [0 ] . ' ctermfg= ' . l: cterm_colors [ 1 ]
106
+ exe ' hi IndentGuidesOdd guibg=' . l: gui_colors [1 ] . ' guifg= ' . l: gui_colors [ 0 ] . ' ctermbg=' . l: cterm_colors [1 ] . ' ctermfg= ' . l: cterm_colors [ 0 ]
107
107
endfunction
108
108
109
109
"
@@ -134,8 +134,8 @@ function! indent_guides#gui_highlight_colors()
134
134
let l: hi_even_bg = indent_guides#lighten_or_darken_color (l: hi_odd_bg )
135
135
136
136
" define the new highlights
137
- exe ' hi IndentGuidesOdd guibg=' . l: hi_odd_bg
138
- exe ' hi IndentGuidesEven guibg=' . l: hi_even_bg
137
+ exe ' hi IndentGuidesOdd guibg=' . l: hi_odd_bg . ' guifg= ' . l: hi_even_bg
138
+ exe ' hi IndentGuidesEven guibg=' . l: hi_even_bg . ' guifg= ' . l: hi_odd_bg
139
139
end
140
140
endfunction
141
141
You can’t perform that action at this time.
0 commit comments