mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
22 lines
315 B
Scheme
22 lines
315 B
Scheme
; Scopes
|
|
;-------
|
|
|
|
[
|
|
(statement_block)
|
|
(function)
|
|
(arrow_function)
|
|
(function_declaration)
|
|
(method_definition)
|
|
] @local.scope
|
|
|
|
; Definitions
|
|
;------------
|
|
|
|
; i => ...
|
|
(arrow_function
|
|
parameter: (identifier) @local.definition.variable.parameter)
|
|
|
|
; References
|
|
;------------
|
|
|
|
(identifier) @local.reference
|