fix(julia): symbol highlighting

Update the `@symbol` capture to enable highlighting symbols
differently from variables.

See https://github.com/tree-sitter/tree-sitter-julia/issues/110
This commit is contained in:
Sergio Alejandro Vargas 2023-07-24 13:51:05 -05:00 committed by Christian Clason
parent 7b04e8b67e
commit 5be3ddeadd

View file

@ -13,7 +13,9 @@
(macro_definition
name: (identifier) @function.macro)
(quote_expression ":" [(identifier) (operator)]) @symbol
(quote_expression
":" @symbol
[(identifier) (operator)] @symbol)
(field_expression
(identifier) @field .)