mirror of
https://github.com/ilyakooo0/helix.git
synced 2024-12-01 11:23:10 +03:00
16 lines
442 B
Scheme
16 lines
442 B
Scheme
; Scopes
|
|
(function_body) @local.scope
|
|
|
|
(case_clause) @local.scope
|
|
|
|
; Definitions
|
|
(let pattern: (identifier) @local.definition)
|
|
(function_parameter name: (identifier) @local.definition)
|
|
(list_pattern (identifier) @local.definition)
|
|
(list_pattern assign: (identifier) @local.definition)
|
|
(tuple_pattern (identifier) @local.definition)
|
|
(record_pattern_argument pattern: (identifier) @local.definition)
|
|
|
|
; References
|
|
(identifier) @local.reference
|