hare.vim

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

commit 9c0b388b94455cde5637a7e3e4609fd247493214
parent 7f7827f1bc1c4bbcf549a423f16e60f77e5179c6
Author: Drew DeVault <sir@cmpwn.com>
Date:   Wed, 12 Aug 2020 21:11:17 -0400

Update comment style

Diffstat:
Msyntax/hare.vim | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/syntax/hare.vim b/syntax/hare.vim @@ -5,7 +5,7 @@ if exists("b:current_syntax") finish endif -syn keyword hareKeyword let const fn def static export bit +syn keyword hareKeyword let const fn def 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 @@ -38,7 +38,7 @@ syn match hareFloat display contained "\.\d\+\(e[-+]\=\d\+\)\=\(f32\|f64\)\=\>" syn match hareFloat display contained "\d\+e[-+]\=\d\+\(f32\|f64\)\=\>" syn keyword hareTodo contained TODO FIXME XXX -syn region hareComment start="/\*" end="\*/" contains=hareTodo extend +syn region hareComment start="//" end="$" contains=hareTodo,@Spell syn keyword hareType u8 u16 u32 u64 i8 i16 i32 i64 syn keyword hareType uint int