From 4048b2cab7dab2474b3049c757a297f38c4aa358 Mon Sep 17 00:00:00 2001 From: Cason Adams Date: Wed, 2 Jan 2019 23:03:44 -0700 Subject: [PATCH] corrected bad color blending on errors with ctrl-p and syntastic --- colors/codedark.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colors/codedark.vim b/colors/codedark.vim index 5e89687..d333de3 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -215,7 +215,7 @@ call hi("Conceal", s:cdFront, s:cdBack, 'none', {}) call hi('Ignore', s:cdFront, {}, 'none', {}) -call hi('Error', s:cdRed, {}, 'undercurl', s:cdRed) +call hi('Error', s:cdRed, s:cdBack, 'undercurl', s:cdRed) call hi('Todo', s:cdNone, s:cdLeftMid, 'none', {})