mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:20:06 +08:00
26 lines
387 B
Scheme
26 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"))
|