From 4c3795faa2751c99c805ac0eaee1c00a2931ae24 Mon Sep 17 00:00:00 2001 From: codesoap Date: Tue, 30 Jul 2019 09:55:25 +0200 Subject: [PATCH] makefile.kak: Refine regex for target Multiple targets and the target separators ':', '::' and '!' are now supported. --- rc/filetype/makefile.kak | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc/filetype/makefile.kak b/rc/filetype/makefile.kak index c2e04588..fcc51ac8 100644 --- a/rc/filetype/makefile.kak +++ b/rc/filetype/makefile.kak @@ -33,7 +33,7 @@ add-highlighter shared/makefile/content default-region group add-highlighter shared/makefile/comment region '#' '$' fill comment add-highlighter shared/makefile/evaluate-commands region -recurse '\(' '\$\(' '\)' fill value -add-highlighter shared/makefile/content/ regex ^[\w.%-/]+\h*:\s 0:variable +add-highlighter shared/makefile/content/ regex ^\S.*?(::|:|!) 0:variable add-highlighter shared/makefile/content/ regex [+?:]= 0:operator evaluate-commands %sh{ @@ -55,7 +55,7 @@ define-command -hidden makefile-indent-on-new-line %{ # preserve previous line indent try %{ execute-keys -draft \;K } ## If the line above is a target indent with a tab - try %{ execute-keys -draft Z k ^[^:]+:\s z i } + try %{ execute-keys -draft Z k ^[^\t].*?(::|:|!) z i } # cleanup trailing white space son previous line try %{ execute-keys -draft k s \h+$ d } # indent after some keywords