helix/runtime/queries/pest/highlights.scm
2024-04-29 17:44:03 +02:00

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