mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
30 lines
578 B
Scheme
30 lines
578 B
Scheme
|
(template_body) @local.scope
|
||
|
(lambda_expression) @local.scope
|
||
|
|
||
|
|
||
|
(function_declaration
|
||
|
name: (identifier) @local.definition) @local.scope
|
||
|
|
||
|
(function_definition
|
||
|
name: (identifier) @local.definition)
|
||
|
|
||
|
(parameter
|
||
|
name: (identifier) @local.definition)
|
||
|
|
||
|
(binding
|
||
|
name: (identifier) @local.definition)
|
||
|
|
||
|
(val_definition
|
||
|
pattern: (identifier) @local.definition)
|
||
|
|
||
|
(var_definition
|
||
|
pattern: (identifier) @local.definition)
|
||
|
|
||
|
(val_declaration
|
||
|
name: (identifier) @local.definition)
|
||
|
|
||
|
(var_declaration
|
||
|
name: (identifier) @local.definition)
|
||
|
|
||
|
(identifier) @local.reference
|