runtime(hare): update syntax script for Hare 0.26.0

closes: #19398

Signed-off-by: Amelia Clarke <selene@perilune.dev>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Amelia Clarke
2026-02-15 16:03:52 +00:00
committed by Christian Brabandt
parent 3794d9b33c
commit 4a5c1601bc
+2 -2
View File
@@ -3,7 +3,7 @@ vim9script
# Vim syntax file.
# Language: Hare
# Maintainer: Amelia Clarke <selene@perilune.dev>
# Last Change: 2026 Feb 01
# Last Change: 2026 Feb 15
# Upstream: https://git.sr.ht/~sircmpwn/hare.vim
if exists('b:current_syntax')
@@ -101,10 +101,10 @@ syn match hareTypedefEquals '=' contained nextgroup=@hareType skipempty skipwhit
# Attributes {{{3
syn keyword hareAttribute @init @fini @test
syn keyword hareAttribute @offset nextgroup=hareAttributeParens skipempty skipwhite
syn keyword hareAttribute @packed
syn keyword hareAttribute @symbol nextgroup=hareAttributeParens skipempty skipwhite
syn keyword hareAttribute @threadlocal
syn keyword hareAttribute @undefined
# Match the parens following attributes.
syn region hareAttributeParens matchgroup=hareParen start='(' end=')' contained contains=TOP transparent