forked from Mirrors/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
561 B
Scheme
31 lines
561 B
Scheme
; Scopes
|
|
|
|
(block) @local.scope
|
|
|
|
; Definitions
|
|
|
|
(parameter_declaration (identifier) @local.definition)
|
|
(variadic_parameter_declaration (identifier) @local.definition)
|
|
|
|
(short_var_declaration
|
|
left: (expression_list
|
|
(identifier) @local.definition))
|
|
|
|
(var_spec
|
|
(identifier) @local.definition)
|
|
|
|
(for_statement
|
|
(range_clause
|
|
left: (expression_list
|
|
(identifier) @local.definition)))
|
|
|
|
(const_declaration
|
|
(const_spec
|
|
name: (identifier) @local.definition))
|
|
|
|
; References
|
|
|
|
(identifier) @local.reference
|
|
(field_identifier) @local.reference
|
|
|