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