mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-14 09:20:04 -04:00
Fix typearg brackets not highlighting for multiple typeargs
This commit is contained in:
parent
85791a4316
commit
73ef705eb2
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@
|
||||||
[ "," "." ":"] @punctuation.delimiter
|
[ "," "." ":"] @punctuation.delimiter
|
||||||
[ "(" ")" "[" "]" "{" "}" ] @punctuation.bracket
|
[ "(" ")" "[" "]" "{" "}" ] @punctuation.bracket
|
||||||
("<" @punctuation.bracket
|
("<" @punctuation.bracket
|
||||||
. (typearg)+ .
|
. (typearg) . ("," (typearg))* .
|
||||||
">" @punctuation.bracket)
|
">" @punctuation.bracket)
|
||||||
|
|
||||||
(identifier) @variable
|
(identifier) @variable
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue