nvim-treesitter/queries/bass/locals.scm

26 lines
387 B
Scheme
Raw Normal View History

2023-03-22 05:24:56 -04:00
; 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"))