commit 668cd6745fd7dcc4e6d2bfd3ea85a57ab3e22ffe
parent b0d8c8c80ee6587a1a2a35583539de39479df497
Author: Eyal Sawady <ecs@d2evs.net>
Date: Mon, 11 Jan 2021 11:27:26 -0500
Add append builtin
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/syntax/hare.vim b/syntax/hare.vim
@@ -8,7 +8,7 @@ endif
syn keyword hareKeyword let const fn def type static export defer
syn keyword hareBranch for while return break continue
syn keyword hareConditional if else match switch
-syn keyword hareBuiltin len offset free alloc assert
+syn keyword hareBuiltin len offset free alloc assert append
syn keyword hareOperator is as
" TODO: highlight size correctly both as keyword and type
syn match harePreProc "^use .*;"