mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 17:36:19 +04:00
15 lines
202 B
Scheme
15 lines
202 B
Scheme
|
; Scopes
|
||
|
|
||
|
(function_body) @local.scope
|
||
|
|
||
|
; Definitions
|
||
|
|
||
|
(argument
|
||
|
(value (var (local_var) @local.definition)))
|
||
|
|
||
|
(instruction
|
||
|
(local_var) @local.definition)
|
||
|
|
||
|
; References
|
||
|
(local_var) @local.reference
|