From cc6a7271b4e4e81a6b0f32580993d0459b8d45f2 Mon Sep 17 00:00:00 2001 From: Fabian Knorr Date: Thu, 18 May 2017 22:59:55 +0200 Subject: [PATCH] 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. --- colors/codedark.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colors/codedark.vim b/colors/codedark.vim index 5b7d775..01843e1 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -145,7 +145,7 @@ call hi('SignColumn', {}, s:cdBack, 'none', {}) call hi('IncSearch', s:cdNone, s:cdSearchCurrent, 'none', {}) call hi('LineNr', s:cdLineNumber, s:cdBack, 'none', {}) call hi('CursorLineNr', s:cdPopupFront, s:cdBack, 'none', {}) -call hi('MatchParen', s:cdNone, s:cdNone, 'inverse', {}) +call hi('MatchParen', s:cdNone, s:cdCursorDark, 'none', {}) call hi('ModeMsg', s:cdFront, s:cdLeftDark, 'none', {}) call hi('MoreMsg', s:cdFront, s:cdLeftDark, 'none', {}) call hi('NonText', s:cdLineNumber, s:cdBack, 'none', {})