mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 17:36:19 +04:00
92380540b8
* chore: update scala tree-sitter grammar * Add locals.scm for Scala
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
|