mirror of
https://github.com/chenasraf/nvim-treesitter.git
synced 2026-05-17 17:38:02 +00:00
15 lines
264 B
Scheme
15 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
|