From 1629973ce6ce2ac447a1d6ee290845d9a281f5c9 Mon Sep 17 00:00:00 2001 From: Derek P Sifford Date: Thu, 25 Oct 2018 10:56:34 -0400 Subject: [PATCH] misc small spec fixes --- after/syntax/css.vim | 1 + after/syntax/json.vim | 6 ++++++ after/syntax/sh.vim | 1 + 3 files changed, 8 insertions(+) create mode 100644 after/syntax/json.vim diff --git a/after/syntax/css.vim b/after/syntax/css.vim index 34bd93c..764e0af 100644 --- a/after/syntax/css.vim +++ b/after/syntax/css.vim @@ -9,6 +9,7 @@ hi! link cssBraces Delimiter hi! link cssFunctionComma Delimiter hi! link cssNoise DraculaPink hi! link cssProp DraculaCyan +hi! link cssPseudoClass DraculaPink hi! link cssPseudoClassId DraculaGreenItalic hi! link cssUnitDecorators DraculaPink hi! link cssVendor DraculaGreenItalic diff --git a/after/syntax/json.vim b/after/syntax/json.vim new file mode 100644 index 0000000..a45d135 --- /dev/null +++ b/after/syntax/json.vim @@ -0,0 +1,6 @@ +if dracula#should_abort('json') + finish +endif + +hi! link jsonKeyword DraculaCyan +hi! link jsonKeywordMatch DraculaPink diff --git a/after/syntax/sh.vim b/after/syntax/sh.vim index 5b2ff7f..fa08607 100644 --- a/after/syntax/sh.vim +++ b/after/syntax/sh.vim @@ -3,3 +3,4 @@ if dracula#should_abort('bash', 'ksh', 'posix', 'sh') endif hi! link shCommandSub NONE +hi! link shEscape DraculaRed