hare.vim

[vim] Hare vim plugin
git clone https://git.torresjrjr.com/hare.vim.git
Log | Files | Refs | README | LICENSE

commit 0181652a401d7e6eb1476448ecc31e352cc29a28
parent 816009ce212ac793f81d1d418db2562a2e40b919
Author: Eyal Sawady <ecs@d2evs.net>
Date:   Thu, 14 Jan 2021 17:06:19 -0500

Remove while keyword

It was dropped in favor of for

Diffstat:
Msyntax/hare.vim | 2+-
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 keyword hareKeyword let const fn def type static export defer -syn keyword hareBranch for while return break continue +syn keyword hareBranch for return break continue syn keyword hareConditional if else match switch syn keyword hareBuiltin len offset free alloc assert append abort syn keyword hareOperator is as