nvim-treesitter/queries/bass/locals.scm
2023-03-22 06:34:30 -04:00

25 lines
387 B
Scheme

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