Skip to content

Commit

Permalink
Swap bg and fg for MatchParen.
Browse files Browse the repository at this point in the history
The problem: when for MatchParen fg=syntax_bg, then block-shaped cursor coloured with bg color,
that is become invisible. This makes "another" paren more accented than "this" paren.

To fix this, I just swap bg and fg for MatchParen, which solves the problem.
  • Loading branch information
shofel committed Jul 4, 2018
1 parent efa0689 commit 90d097d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion colors/two-firewatch.vim
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ if has('gui_running') || &t_Co == 88 || &t_Co == 256
call <sid>X('IncSearch', s:syntax_bg, s:uno_4, '')
call <sid>X('LineNr', s:syntax_fold_bg, '', '')
call <sid>X('CursorLineNr', s:uno_2, '', 'none')
call <sid>X('MatchParen', s:syntax_bg, s:syntax_accent, '')
call <sid>X('MatchParen', s:syntax_accent, s:syntax_bg, '')
call <sid>X('Italic', '', '', 'italic')
call <sid>X('ModeMsg', s:syntax_color_added, '', '')
call <sid>X('MoreMsg', s:syntax_fg, '', '')
Expand Down

0 comments on commit 90d097d

Please sign in to comment.