diff options
Diffstat (limited to 'runtime/syntax/opl.vim')
-rw-r--r-- | runtime/syntax/opl.vim | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/runtime/syntax/opl.vim b/runtime/syntax/opl.vim index 8959cf6d6f..8b66a5b345 100644 --- a/runtime/syntax/opl.vim +++ b/runtime/syntax/opl.vim @@ -73,16 +73,14 @@ syn match OPLMathsOperator "-\|=\|[:<>+\*^/\\]" " Define the default highlighting. " Only when an item doesn't have highlighting yet -command -nargs=+ HiLink hi def link <args> -HiLink OPLStatement Statement -HiLink OPLNumber Number -HiLink OPLString String -HiLink OPLComment Comment -HiLink OPLMathsOperator Conditional -" HiLink OPLError Error +hi def link OPLStatement Statement +hi def link OPLNumber Number +hi def link OPLString String +hi def link OPLComment Comment +hi def link OPLMathsOperator Conditional +" hi def link OPLError Error -delcommand HiLink let b:current_syntax = "opl" |