mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 06:30:03 +08:00
85 lines
1.0 KiB
Scheme
85 lines
1.0 KiB
Scheme
; Includes
|
|
|
|
(include
|
|
"~" @include
|
|
_ @text.uri @string.special)
|
|
|
|
; Macros
|
|
|
|
(macro
|
|
"%"
|
|
(identifier) @function.macro)
|
|
|
|
((identifier) @function.macro
|
|
(#lua-match? @function.macro "^[a-z]?[0-9]*[A-Z-_]+$"))
|
|
|
|
(rune
|
|
. rune_start: (rune_char ",")
|
|
. (identifier) @function.call)
|
|
|
|
(rune
|
|
. rune_start: (rune_char ";")
|
|
. (identifier) @function.call)
|
|
|
|
((identifier) @function.call
|
|
(#lua-match? @function.call "^:"))
|
|
|
|
; Keywords
|
|
|
|
(opcode) @keyword
|
|
|
|
; Labels
|
|
|
|
(label
|
|
"@" @symbol
|
|
(identifier) @function)
|
|
|
|
(sublabel_reference
|
|
(identifier) @namespace
|
|
"/" @punctuation.delimiter
|
|
(identifier) @label)
|
|
|
|
; Repeats
|
|
|
|
((identifier) @repeat
|
|
(#eq? @repeat "while"))
|
|
|
|
; Variables
|
|
|
|
(identifier) @variable
|
|
|
|
; Literals
|
|
|
|
(raw_ascii) @string
|
|
|
|
(hex_literal
|
|
"#" @symbol
|
|
(hex_lit_value) @string.special)
|
|
|
|
(number) @number
|
|
|
|
; Punctuation
|
|
|
|
[ "{" "}" ] @punctuation.bracket
|
|
|
|
[ "[" "]" ] @punctuation.bracket
|
|
|
|
[
|
|
"%"
|
|
"|"
|
|
"$"
|
|
","
|
|
"_"
|
|
"."
|
|
"-"
|
|
";"
|
|
"="
|
|
"!"
|
|
"?"
|
|
"&"
|
|
] @punctuation.special
|
|
|
|
; Comments
|
|
|
|
(comment) @comment @spell
|