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.
helix/runtime/queries/pest/highlights.scm

50 lines
410 B
Scheme

(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