~sircmpwn/hare.vim

c45a0c7665fce3bedd963388da7b320111fcf05c — Amelia Clarke 1 year, 3 months ago aeda208
syntax: add highlighting for [[...]] in comments

Signed-off-by: Amelia Clarke <me@rsaihe.dev>
1 files changed, 3 insertions(+), 1 deletions(-)

M syntax/hare.vim
M syntax/hare.vim => syntax/hare.vim +3 -1
@@ 76,7 76,8 @@ syn keyword hareTodo FIXME TODO XXX contained
syn match hareAttribute "@[a-z]*"

" Comments.
syn region hareComment start="//" end="$" contains=hareTodo,@Spell
syn region hareComment start="//" end="$" contains=hareCommentDoc,hareTodo,@Spell display keepend
syn region hareCommentDoc start="\[\[" end="]]\|\ze\_s" contained display

" The size keyword can be either a builtin or a type.
syn match hareBuiltin "\v<size>\ze(\_s*//.*\_$)*\_s*\(" contains=hareComment


@@ 96,6 97,7 @@ hi def link hareAttribute Keyword
hi def link hareBoolean Boolean
hi def link hareBuiltin Function
hi def link hareComment Comment
hi def link hareCommentDoc SpecialComment
hi def link hareConditional Conditional
hi def link hareEscape SpecialChar
hi def link hareFloat Float