diff options
Diffstat (limited to 'runtime/syntax/apachestyle.vim')
-rw-r--r-- | runtime/syntax/apachestyle.vim | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/runtime/syntax/apachestyle.vim b/runtime/syntax/apachestyle.vim index 53d5907b9..3695a1142 100644 --- a/runtime/syntax/apachestyle.vim +++ b/runtime/syntax/apachestyle.vim @@ -39,16 +39,14 @@ syn match apTagError contained /[^>]</ms=s+1 " Define the default highlighting. " Only when an item doesn't have highlighting yet -command -nargs=+ HiLink hi def link <args> -HiLink apComment Comment -HiLink apOption Keyword -"HiLink apLastValue Identifier ugly? -HiLink apTag Special -HiLink apTagOption Identifier -HiLink apTagError Error +hi def link apComment Comment +hi def link apOption Keyword +"hi def link apLastValue Identifier ugly? +hi def link apTag Special +hi def link apTagOption Identifier +hi def link apTagError Error -delcommand HiLink let b:current_syntax = "apachestyle" " vim: ts=8 |