From 9fdc6d8a7a62fb833eec179030c6f25bb2ea51e2 Mon Sep 17 00:00:00 2001 From: nodist Date: Mon, 18 May 2026 17:26:35 -0400 Subject: remove keyword and only use operator --- syntax/kpl.vim | 7 +------ 1 file changed, 1 insertion(+), 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 - -- cgit v1.2.3