diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-05-18 17:26:35 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-05-18 17:26:35 -0400 |
| commit | 9fdc6d8a7a62fb833eec179030c6f25bb2ea51e2 (patch) | |
| tree | c3b1da44f2cd96b401fe33d881f146ca5e38232f | |
| parent | 569c4dddb04154967cbdc15ba395a45d110dc56e (diff) | |
| -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 - |
