commit 26fab2ca4b33915e864efadd45899fdd31b3ab48
parent 6d2c2c77a056cbc2702fb1dc03b41673100a64d6
Author: Sebastian <sebastian@sebsite.pw>
Date: Fri, 11 Mar 2022 18:46:35 -0500
Highlight _ at keyword
Signed-off-by: Sebastian <sebastian@sebsite.pw>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/syntax/hare.vim b/syntax/hare.vim
@@ -6,7 +6,7 @@ if exists("b:current_syntax")
endif
syn case match
-syn keyword hareKeyword let const fn def type static export defer
+syn keyword hareKeyword let const fn def type static export defer _
syn keyword hareBranch for return break continue yield
syn keyword hareConditional if else match switch
syn keyword hareLabel case