Add MoreMsg and update search highlighting

This commit is contained in:
Patrick Stockwell
2020-05-09 23:26:55 +10:00
parent 43ec328d5c
commit e6a52f2a5c

View File

@@ -124,8 +124,8 @@ call Highlight("gitcommitSummary", s:white, s:none, s:none)
call Highlight("gitcommitOverflow", s:magenta, s:none, s:none)
call Highlight("SpecialKey", s:dark_grey, s:darker_grey, s:none)
call Highlight("IncSearch", s:white, s:purple, s:bold_underline)
call Highlight("Search", s:white, s:purple, s:bold_underline)
call Highlight("IncSearch", s:white, s:magenta, s:bold_underline)
call Highlight("Search", s:white, s:magenta, s:bold_underline)
call Highlight("Identifier", s:light_blue, s:none, s:none)
call Highlight("Question", s:light_blue, s:none, s:none)
@@ -157,6 +157,8 @@ call Highlight("PmenuSel", s:yellow, s:dark_grey, s:none)
call Highlight("PmenuSbar", s:none, s:grey, s:none)
call Highlight("PmenuThumb", s:none, s:white, s:none)
call Highlight("MoreMsg", s:light_green, s:none, s:none)
" Javascript syntax overwrites from vim-javascript plugin
syntax region jsObject contained matchgroup=jsObjectBraces start=/{/ end=/}/ contains=jsObjectKey,jsObjectKeyString,jsObjectKeyComputed,jsObjectShorthandProp,jsObjectSeparator,jsObjectFuncName,jsObjectMethodType,jsGenerator,jsComment,jsObjectStringKey,jsSpreadExpression,jsTemplateString,jsDecorator,jsAsyncKeyword extend fold