mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 10:20:04 +08:00
23 lines
236 B
Scheme
23 lines
236 B
Scheme
; Scopes
|
|
|
|
[
|
|
(program)
|
|
(macro)
|
|
(memory_execution)
|
|
(subroutine)
|
|
] @scope
|
|
|
|
; References
|
|
|
|
(identifier) @reference
|
|
|
|
; Definitions
|
|
|
|
(label
|
|
"@"
|
|
. (identifier) @definition.function)
|
|
|
|
(macro
|
|
"%"
|
|
. (identifier) @definition.macro)
|