Skip to content

Commit

Permalink
Fix reversed colors for IncSearch (#80)
Browse files Browse the repository at this point in the history
IncSearch's attribute will default to "reverse" unless we specify
otherwise. This commit sets the attribute to 'NONE' so that it's easier
to find the highlighted text.
  • Loading branch information
cstyles authored and mhartington committed Apr 10, 2019
1 parent 8305c14 commit 08158ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion colors/OceanicNext.vim
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ call <sid>hi('ErrorMsg', s:base08, s:base00, '', '')
call <sid>hi('Exception', s:base08, '', '', '')
call <sid>hi('FoldColumn', s:base0D, s:base00, '', '')
call <sid>hi('Folded', s:base03, s:base01, s:italic, '')
call <sid>hi('IncSearch', s:base01, s:base09, '', '')
call <sid>hi('IncSearch', s:base01, s:base09, 'NONE', '')
call <sid>hi('Italic', '', '', s:italic, '')

call <sid>hi('Macro', s:base08, '', '', '')
Expand Down
2 changes: 1 addition & 1 deletion colors/OceanicNextLight.vim
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ call <sid>hi('ErrorMsg', s:base08, s:base00, '', '')
call <sid>hi('Exception', s:base08, '', '', '')
call <sid>hi('FoldColumn', s:base0D, s:base00, '', '')
call <sid>hi('Folded', s:base03, s:base01, s:italic, '')
call <sid>hi('IncSearch', s:base01, s:base09, '', '')
call <sid>hi('IncSearch', s:base01, s:base09, 'NONE', '')
call <sid>hi('Italic', '', '', s:italic, '')

call <sid>hi('Macro', s:base08, '', '', '')
Expand Down

0 comments on commit 08158ee

Please sign in to comment.