From ecc045a7e4be4ab4a4f5420a6c422c25c2ec9322 Mon Sep 17 00:00:00 2001 From: hosseintoussi Date: Sat, 29 Dec 2018 00:43:10 +0100 Subject: [PATCH] fixed the class and module name highlighting in Ruby On MacOS the Class name and Module name were not getting the "BlueGreen" highlighting which is the correct color. --- colors/codedark.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/colors/codedark.vim b/colors/codedark.vim index 529ce0c..98b06a4 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -255,6 +255,9 @@ call hi('jsThis', s:cdBlue, {}, 'none', {}) " Ruby: call hi('rubyClassNameTag', s:cdBlueGreen, {}, 'none', {}) +call hi('rubyClassName', s:cdBlueGreen, {}, 'none', {}) +call hi('rubyModuleName', s:cdBlueGreen, {}, 'none', {}) +call hi('rubyConstant', s:cdBlueGreen, {}, 'none', {}) " Golang: call hi('goPackage', s:cdBlue, {}, 'none', {})