From 7072e884da86728ef63940c0163353d9a4d1c5fe Mon Sep 17 00:00:00 2001 From: nodist Date: Wed, 17 Jun 2026 12:03:06 -0400 Subject: remove comments --- syntax/kpl.vim | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/syntax/kpl.vim b/syntax/kpl.vim index f0dfadd..496fc80 100644 --- a/syntax/kpl.vim +++ b/syntax/kpl.vim @@ -1,9 +1,7 @@ -" Operators syn match kplOperator "[~!$%&*\-+=|:'<,>\./]\|`[a-z]\w*" contains=@NoSpell hi def link kplOperator Operator -" Comments syn match kplTodo contained "\" contains=@NoSpell syn match kplCommentLine "\/\/.*$" contains=kplTodo syn region kplCommentRange start="/\*" end="\*/" contains=kplTodo @@ -11,46 +9,35 @@ hi def link kplTodo TODO hi def link kplCommentLine Comment hi def link kplCommentRange Comment -" Semicolon syn match kplSemicolon ";" hi def link kplSemicolon Comment -" Number syn match kplNumber "\%(\d_\d\|\d\)\+\%(\.\%(\d_\d\|\d\)\+\)\?" hi def link kplNumber Number -" String syn region kplString start=/"/ skip=/\\\\"/ end=/"/ hi def link kplString String -" Var syn match kplVar "[a-z]\w*" contains=@NoSpell hi def link kplVar Ignore -" Ignore syn match kplIgnore "\<_\w*" contains=@NoSpell hi def link kplIgnore Comment -" Symbol syn match kplSymbol "\.\w\+" contains=@NoSpell hi def link kplSymbol Identifier -" Type syn match kplType "[A-Z]\w*" contains=@NoSpell hi def link kplType Type -" Qualifiers syn match kplQualifiers "Const\|Empty\|Lock\|Ref" contains=@NoSpell hi def link kplQualifiers Repeat -" Define syn match kplDefine "\[\|\]" hi def link kplDefine Define -" List syn match kplList "[()]" hi def link kplList Special -" Action syn match kplAction "[?@#^{}]" hi def link kplAction Function -- cgit v1.2.3