mirror of
https://github.com/helix-editor/helix
synced 2026-01-26 05:38:09 +01:00
We do not highlight `(ERROR)` nodes since the highlighting is quite noisy while typing. Also see todo comments in `syntax.rs` - we could introduce configuration in the future to prepend `(ERROR)` to a language's highlights query.
26 lines
336 B
Scheme
26 lines
336 B
Scheme
[
|
|
(true)
|
|
(false)
|
|
] @constant.builtin.boolean
|
|
(null) @constant.builtin
|
|
(number) @constant.numeric
|
|
(pair
|
|
key: (_) @keyword)
|
|
(ipair
|
|
key: (_) @keyword)
|
|
(mpair
|
|
key: (_) @keyword)
|
|
|
|
(string) @string
|
|
(escape_sequence) @constant.character.escape
|
|
|
|
"," @punctuation.delimiter
|
|
[
|
|
"["
|
|
"]"
|
|
"{"
|
|
"}"
|
|
"<"
|
|
">"
|
|
] @punctuation.bracket
|