mirror of
https://github.com/helix-editor/helix
synced 2026-01-26 17:48:22 +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.
29 lines
416 B
Scheme
29 lines
416 B
Scheme
(section (identifier) @type.builtin)
|
|
|
|
(attribute (identifier) @attribute)
|
|
(property (path) @variable.other.member)
|
|
(constructor (identifier) @constructor)
|
|
|
|
(string) @string
|
|
(integer) @constant.numeric.integer
|
|
(float) @constant.numeric.float
|
|
|
|
(true) @constant.builtin.boolean
|
|
(false) @constant.builtin.boolean
|
|
|
|
[
|
|
"["
|
|
"]"
|
|
] @tag
|
|
|
|
[
|
|
"("
|
|
")"
|
|
"{"
|
|
"}"
|
|
] @punctuation.bracket
|
|
|
|
"=" @operator
|
|
|
|
(comment) @comment
|