Change the color of the matching paren to avoid confusion

Previously, matching parentheses appeared with the same background as
the cursor itself, making them indistinguishable. This commit changes
the matching paren to a darker color.
This commit is contained in:
Fabian Knorr 2017-05-18 22:59:55 +02:00
commit cc6a7271b4

View file

@ -145,7 +145,7 @@ call <sid>hi('SignColumn', {}, s:cdBack, 'none', {})
call <sid>hi('IncSearch', s:cdNone, s:cdSearchCurrent, 'none', {})
call <sid>hi('LineNr', s:cdLineNumber, s:cdBack, 'none', {})
call <sid>hi('CursorLineNr', s:cdPopupFront, s:cdBack, 'none', {})
call <sid>hi('MatchParen', s:cdNone, s:cdNone, 'inverse', {})
call <sid>hi('MatchParen', s:cdNone, s:cdCursorDark, 'none', {})
call <sid>hi('ModeMsg', s:cdFront, s:cdLeftDark, 'none', {})
call <sid>hi('MoreMsg', s:cdFront, s:cdLeftDark, 'none', {})
call <sid>hi('NonText', s:cdLineNumber, s:cdBack, 'none', {})