mirror of
https://github.com/helix-editor/helix
synced 2026-03-07 20:46:21 +01:00
13 lines
266 B
Scheme
13 lines
266 B
Scheme
; Scopes
|
|
[
|
|
(block)
|
|
(function_declaration)
|
|
] @local.scope
|
|
|
|
; Definitions
|
|
(function_arg name: (identifier) @local.definition.variable.parameter)
|
|
(variable_declaration name: (identifier) @local.definition.variable)
|
|
|
|
; References
|
|
(block (identifier)) @local.reference
|