diff options
author | Chris Kempson <chriskempson@users.noreply.github.com> | 2016-12-28 12:24:35 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-28 12:24:35 +0000 |
commit | 1d149b8f66bae127b6a9edc868b49c0fd687e77e (patch) | |
tree | 7e1f024af0d0857e5a47ea25bed86f9ac7dc5bb9 | |
parent | 9bc705129abec076c3336ec806b6defad0c246f0 (diff) | |
parent | c614b3e8e8d2e160538e5784cc084253e0673e2e (diff) |
Merge pull request #129 from poliquin/master
Fix Search and IncSearch highlighting (#113)
-rw-r--r-- | templates/default.mustache | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/default.mustache b/templates/default.mustache index 0c6246f..d6630c4 100644 --- a/templates/default.mustache +++ b/templates/default.mustache @@ -95,14 +95,14 @@ call <sid>hi("ErrorMsg", s:gui08, s:gui00, s:cterm08, s:cterm00, "", "") call <sid>hi("Exception", s:gui08, "", s:cterm08, "", "", "") call <sid>hi("FoldColumn", s:gui0C, s:gui01, s:cterm0C, s:cterm01, "", "") call <sid>hi("Folded", s:gui03, s:gui01, s:cterm03, s:cterm01, "", "") -call <sid>hi("IncSearch", s:gui01, s:gui0A, s:cterm01, s:cterm0A, "none", "") +call <sid>hi("IncSearch", s:gui01, s:gui09, s:cterm01, s:cterm09, "none", "") call <sid>hi("Italic", "", "", "", "", "none", "") call <sid>hi("Macro", s:gui08, "", s:cterm08, "", "", "") call <sid>hi("MatchParen", s:gui00, s:gui03, s:cterm00, s:cterm03, "", "") call <sid>hi("ModeMsg", s:gui0B, "", s:cterm0B, "", "", "") call <sid>hi("MoreMsg", s:gui0B, "", s:cterm0B, "", "", "") call <sid>hi("Question", s:gui0D, "", s:cterm0D, "", "", "") -call <sid>hi("Search", s:gui01, s:gui0A, s:cterm01, s:cterm0A, "", "") +call <sid>hi("Search", s:gui03, s:gui0A, s:cterm03, s:cterm0A, "", "") call <sid>hi("SpecialKey", s:gui03, "", s:cterm03, "", "", "") call <sid>hi("TooLong", s:gui08, "", s:cterm08, "", "", "") call <sid>hi("Underlined", s:gui08, "", s:cterm08, "", "", "") |