mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 11:06:54 -04:00
Co-authored-by: Christian Clason <c.clason@uni-graz.at> Co-authored-by: Riley Bruins <ribru17@hotmail.com> Co-authored-by: Tayfun Bocek <tayfunbocek@live.ca>
14 lines
264 B
Scheme
14 lines
264 B
Scheme
; Scopes
|
|
(function_definition) @local.scope
|
|
|
|
; Definitions
|
|
(variable_assignment
|
|
name: (variable_name) @local.definition.var)
|
|
|
|
(function_definition
|
|
name: (word) @local.definition.function)
|
|
|
|
; References
|
|
(variable_name) @local.reference
|
|
|
|
(word) @local.reference
|