mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
37 lines
695 B
Scheme
37 lines
695 B
Scheme
; This file tells us about the scope of variables so e.g. local
|
|
; variables override global functions with the same name
|
|
|
|
; Scope
|
|
|
|
(recipe) @local.scope
|
|
|
|
; Definitions
|
|
|
|
(alias
|
|
name: (identifier) @local.definition.variable)
|
|
|
|
(assignment
|
|
name: (identifier) @local.definition.variable)
|
|
|
|
(mod
|
|
name: (identifier) @local.definition.namespace)
|
|
|
|
(recipe_parameter
|
|
name: (identifier) @local.definition.variable.parameter)
|
|
|
|
(recipe
|
|
name: (identifier) @local.definition.function)
|
|
|
|
; References
|
|
|
|
(alias
|
|
name: (identifier) @local.reference)
|
|
|
|
(function_call
|
|
name: (identifier) @local.reference)
|
|
|
|
(recipe_dependency
|
|
name: (identifier) @local.reference)
|
|
|
|
(value
|
|
(identifier) @local.reference)
|