diff options
Diffstat (limited to 'runtime/syntax/lotos.vim')
-rw-r--r-- | runtime/syntax/lotos.vim | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/runtime/syntax/lotos.vim b/runtime/syntax/lotos.vim index e617bdb08..8262e1d9e 100644 --- a/runtime/syntax/lotos.vim +++ b/runtime/syntax/lotos.vim @@ -54,17 +54,15 @@ syn sync lines=250 " Define the default highlighting. " Only when an item doesn't have highlighting yet -command -nargs=+ HiLink hi def link <args> -HiLink lotosStatement Statement -HiLink lotosProcess Label -HiLink lotosOperator Operator -HiLink lotosSort Function -HiLink lotosType Type -HiLink lotosComment Comment -HiLink lotosDelimiter String +hi def link lotosStatement Statement +hi def link lotosProcess Label +hi def link lotosOperator Operator +hi def link lotosSort Function +hi def link lotosType Type +hi def link lotosComment Comment +hi def link lotosDelimiter String -delcommand HiLink let b:current_syntax = "lotos" |