nvim-treesitter/runtime/queries/bass/locals.scm
2023-09-09 16:17:08 +02:00

25 lines
423 B
Scheme

; Scopes
[
(list)
(scope)
(cons)
] @local.scope
; References
(symbol) @local.reference
; Definitions
((list
. (symbol) @_fnkw
. (symbol) @local.definition.function
(symbol)? @local.definition.parameter)
(#any-of? @_fnkw "def" "defop" "defn" "fn"))
((cons
. (symbol) @_fnkw
. (symbol) @local.definition.function
(symbol)? @local.definition.parameter)
(#any-of? @_fnkw "def" "defop" "defn" "fn"))