mirror of https://github.com/helix-editor/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.
33 lines
1.5 KiB
Scheme
33 lines
1.5 KiB
Scheme
8 months ago
|
;; Better highlighting by referencing to the definition, for variable references.
|
||
|
;; See https://tree-sitter.github.io/tree-sitter/syntax-highlighting#local-variables
|
||
|
|
||
|
(compilation) @local.scope
|
||
|
(package_declaration) @local.scope
|
||
|
(package_body) @local.scope
|
||
|
(subprogram_declaration) @local.scope
|
||
|
(subprogram_body) @local.scope
|
||
|
(block_statement) @local.scope
|
||
|
|
||
|
(with_clause (_) @local.definition)
|
||
|
(procedure_specification name: (_) @local.definition)
|
||
|
(function_specification name: (_) @local.definition)
|
||
|
(package_declaration name: (_) @local.definition)
|
||
|
(package_body name: (_) @local.definition)
|
||
|
(generic_instantiation . name: (_) @local.definition)
|
||
|
(component_declaration . (identifier) @local.definition)
|
||
|
(exception_declaration . (identifier) @local.definition)
|
||
|
(formal_object_declaration . (identifier) @local.definition)
|
||
|
(object_declaration . (identifier) @local.definition)
|
||
|
(parameter_specification . (identifier) @local.definition)
|
||
|
(full_type_declaration . (identifier) @local.definition)
|
||
|
(private_type_declaration . (identifier) @local.definition)
|
||
|
(private_extension_declaration . (identifier) @local.definition)
|
||
|
(incomplete_type_declaration . (identifier) @local.definition)
|
||
|
(protected_type_declaration . (identifier) @local.definition)
|
||
|
(formal_complete_type_declaration . (identifier) @local.definition)
|
||
|
(formal_incomplete_type_declaration . (identifier) @local.definition)
|
||
|
(task_type_declaration . (identifier) @local.definition)
|
||
|
(subtype_declaration . (identifier) @local.definition)
|
||
|
|
||
|
(identifier) @local.reference
|