mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-18 11:20:07 -04:00
fix(julia): fix macro identifier highlight query
This fixes the macro identifier highlight query after the breaking changes in https://github.com/tree-sitter/tree-sitter-julia/pull/153. See also https://github.com/tree-sitter/tree-sitter-julia/pull/158/commits/9f2fb3b9a8c73ef0d2ec005c97f91274b492d48d.
This commit is contained in:
parent
731fbe9ac3
commit
28a5dc06a8
1 changed files with 3 additions and 1 deletions
|
|
@ -34,7 +34,9 @@
|
||||||
(#any-of? @_pipe "|>" ".|>"))
|
(#any-of? @_pipe "|>" ".|>"))
|
||||||
|
|
||||||
; Macros
|
; Macros
|
||||||
(macro_identifier) @function.macro
|
(macro_identifier
|
||||||
|
"@" @function.macro
|
||||||
|
(identifier) @function.macro)
|
||||||
|
|
||||||
(macro_definition
|
(macro_definition
|
||||||
(signature
|
(signature
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue