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

20 lines
309 B
Scheme
Raw Normal View History

2024-01-06 15:05:50 +09:00
; Scopes
2021-07-04 19:54:08 +01:00
[
(command)
(function_definition)
(if_statement)
(for_statement)
(begin_statement)
(while_statement)
(switch_statement)
] @local.scope
2024-01-06 15:05:50 +09:00
; Definitions
(function_definition
name: (word) @local.definition.function)
2024-01-06 15:05:50 +09:00
; References
(variable_name) @local.reference
2024-01-06 15:05:50 +09:00
(word) @local.reference