mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-28 00:40:07 +08:00
14 lines
234 B
Scheme
14 lines
234 B
Scheme
|
; Scopes
|
||
|
(function_definition) @scope
|
||
|
|
||
|
; Definitions
|
||
|
(variable_assignment
|
||
|
name: (variable_name) @definition.var)
|
||
|
|
||
|
(function_definition
|
||
|
name: (word) @definition.function)
|
||
|
|
||
|
; References
|
||
|
(variable_name) @reference
|
||
|
(word) @reference
|