mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 04:17:43 +03: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.
28 lines
416 B
Scheme
28 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
|