diff options
Diffstat (limited to 'runtime/syntax/dracula.vim')
-rw-r--r-- | runtime/syntax/dracula.vim | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/runtime/syntax/dracula.vim b/runtime/syntax/dracula.vim index b60e4846e..a373dc200 100644 --- a/runtime/syntax/dracula.vim +++ b/runtime/syntax/dracula.vim @@ -59,15 +59,13 @@ syn sync lines=50 " Define the default highlighting. " Only when an item doesn't have highlighting yet -command -nargs=+ HiLink hi def link <args> -HiLink draculaIdentifier Identifier -HiLink draculaStatement Statement -HiLink draculaType Type -HiLink draculaComment Comment -HiLink draculaPreProc PreProc +hi def link draculaIdentifier Identifier +hi def link draculaStatement Statement +hi def link draculaType Type +hi def link draculaComment Comment +hi def link draculaPreProc PreProc -delcommand HiLink let b:current_syntax = "dracula" |