diff options
Diffstat (limited to 'syntax/kpl.vim')
| -rw-r--r-- | syntax/kpl.vim | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/syntax/kpl.vim b/syntax/kpl.vim index 9722c79..354e364 100644 --- a/syntax/kpl.vim +++ b/syntax/kpl.vim @@ -1,6 +1,6 @@ " Operators -syn match kplOperator "[~!$%&*\-+=|:'<,>\./]" +syn match kplOperator "[~!$%&*\-+=|:'<,>\./]\|`[a-z]\w*" contains=@NoSpell hi def link kplOperator Operator " Comments @@ -35,10 +35,6 @@ hi def link kplIgnore Comment syn match kplSymbol "\.\w\+" contains=@NoSpell hi def link kplSymbol Identifier -" Keyword -syn match kplKeyword "`[a-z]\w*" contains=@NoSpell -hi def link kplKeyword Conditional - " Type syn match kplType "[A-Z]\w*" contains=@NoSpell hi def link kplType Type @@ -58,4 +54,3 @@ hi def link kplList Special " Action syn match kplAction "[?@#^{}]" hi def link kplAction Function - |
