mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-18 11:20:07 -04:00
Split func/method definition from calls in julia highlighting query
This commit is contained in:
parent
ae87408513
commit
140393cfff
1 changed files with 4 additions and 4 deletions
|
|
@ -23,13 +23,13 @@
|
||||||
(function_definition
|
(function_definition
|
||||||
name: (identifier) @function)
|
name: (identifier) @function)
|
||||||
(call_expression
|
(call_expression
|
||||||
(identifier) @function)
|
(identifier) @function.call)
|
||||||
(call_expression
|
(call_expression
|
||||||
(field_expression (identifier) @method .))
|
(field_expression (identifier) @method.call .))
|
||||||
(broadcast_call_expression
|
(broadcast_call_expression
|
||||||
(identifier) @function)
|
(identifier) @function.call)
|
||||||
(broadcast_call_expression
|
(broadcast_call_expression
|
||||||
(field_expression (identifier) @method .))
|
(field_expression (identifier) @method.call .))
|
||||||
(parameter_list
|
(parameter_list
|
||||||
(identifier) @parameter)
|
(identifier) @parameter)
|
||||||
(parameter_list
|
(parameter_list
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue