mirror of https://github.com/helix-editor/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
410 B
Scheme
50 lines
410 B
Scheme
6 months ago
|
(line_comment) @comment
|
||
|
(block_comment) @comment
|
||
|
|
||
|
[
|
||
|
"("
|
||
|
")"
|
||
|
"["
|
||
|
"]"
|
||
|
"{"
|
||
|
"}"
|
||
|
] @punctuation.bracket
|
||
|
|
||
|
((identifier) @variable)
|
||
|
((builtin) @type.builtin)
|
||
|
((const) @constant)
|
||
|
|
||
|
[
|
||
|
(string)
|
||
|
(character)
|
||
|
] @string
|
||
|
|
||
|
[
|
||
|
"_"
|
||
|
"@"
|
||
|
"$"
|
||
|
]@keyword.storage.modifier
|
||
|
|
||
|
[
|
||
|
"~"
|
||
|
"|"
|
||
|
"="
|
||
|
"+"
|
||
|
"*"
|
||
|
"&"
|
||
|
"^"
|
||
|
"!"
|
||
|
"?"
|
||
|
".."
|
||
|
] @operator
|
||
|
|
||
|
[
|
||
|
"PUSH"
|
||
|
"PEEK"
|
||
|
"POP"
|
||
|
"SOI"
|
||
|
"EOI"
|
||
|
"ANY"
|
||
|
] @keyword
|
||
|
|