From 89c618ccc5d3d835fa217fe6e4118b90cd65ba13 Mon Sep 17 00:00:00 2001 From: Fabian Knorr Date: Thu, 18 May 2017 23:03:59 +0200 Subject: [PATCH] Highlight special (doc) comments like regular comments Previously, special / doc comments were rendered in foreground color, i.e. white or light gray. This makes it hard to recognize them as comments. This commit colors them the same way as regular comments. --- colors/codedark.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colors/codedark.vim b/colors/codedark.vim index 5b7d775..4284ecd 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -203,7 +203,7 @@ call hi('Special', s:cdFront, {}, 'none', {}) call hi('SpecialChar', s:cdFront, {}, 'none', {}) call hi('Tag', s:cdFront, {}, 'none', {}) call hi('Delimiter', s:cdFront, {}, 'none', {}) -call hi('SpecialComment', s:cdFront, {}, 'none', {}) +call hi('SpecialComment', s:cdGreen, {}, 'none', {}) call hi('Debug', s:cdFront, {}, 'none', {}) call hi('Underlined', s:cdNone, {}, 'underline', {})