nvim-treesitter/runtime/queries/bash/locals.scm

15 lines
264 B
Scheme
Raw Normal View History

; Scopes
(function_definition) @local.scope
; Definitions
2024-01-06 15:05:50 +09:00
(variable_assignment
name: (variable_name) @local.definition.var)
(function_definition
name: (word) @local.definition.function)
; References
(variable_name) @local.reference
2024-01-06 15:05:50 +09:00
(word) @local.reference