mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
17 lines
251 B
Scheme
17 lines
251 B
Scheme
; Scopes
|
|
|
|
(block) @local.scope
|
|
|
|
; Definitions
|
|
|
|
(parameter
|
|
(identifier) @local.definition)
|
|
|
|
(let_declaration
|
|
pattern: (identifier) @local.definition)
|
|
|
|
(closure_parameters (identifier)) @local.definition
|
|
|
|
; References
|
|
(identifier) @local.reference
|
|
|