diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-06-18 09:52:33 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-06-18 09:52:33 -0400 |
| commit | e5358f165809cf84ae4037c7c8b1e660ddc94aca (patch) | |
| tree | db860731c0841236ba6d75962083215600edf79a | |
| parent | 9569b2a7c42c63392ccd6e45c1cfbebd82e02938 (diff) | |
| -rw-r--r-- | syntax/kpl.vim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/syntax/kpl.vim b/syntax/kpl.vim index fafe590..835fe5e 100644 --- a/syntax/kpl.vim +++ b/syntax/kpl.vim @@ -1,5 +1,5 @@ -syn match kplOperator "[~!$%&*\-+=|:'<,>\./]\|`[a-z]\w*" contains=@NoSpell +syn match kplOperator "[~!$%&*\-+=|:<,>\./]\|`[a-z]\w*" contains=@NoSpell hi def link kplOperator Operator syn match kplTodo contained "\<TODO\>" contains=@NoSpell @@ -18,6 +18,9 @@ hi def link kplNumber Number syn region kplString start=/"/ skip=/\\\\"/ end=/"/ hi def link kplString String +syn match kplChar "'\\\?.'" contains=@NoSpell +hi def link kplChar Constant + syn match kplVar "[a-z]\w*" contains=@NoSpell hi def link kplVar Ignore |
