mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
12 lines
301 B
Scheme
12 lines
301 B
Scheme
|
; locals.scm
|
||
|
|
||
|
(function_definition) @local.scope
|
||
|
|
||
|
(formal_parameters (identifier) @local.definition)
|
||
|
|
||
|
(left_assignment name: (identifier) @local.definition)
|
||
|
(equals_assignment name: (identifier) @local.definition)
|
||
|
(right_assignment name: (identifier) @local.definition)
|
||
|
|
||
|
(identifier) @local.reference
|