mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Co-authored-by: postsolar <120750161+postsolar@users.noreply.github.com> Co-authored-by: Iorvethe <58810330+Iorvethe@users.noreply.github.com> Co-authored-by: Blaž Hrastnik <blaz@mxxn.io> Co-authored-by: gabydd <gabydinnerdavid@gmail.com>
50 lines
942 B
Scheme
50 lines
942 B
Scheme
((program
|
|
.
|
|
(comment)*
|
|
.
|
|
(comment) @keyword.import)
|
|
(#match? @keyword.import "^;+ *inherits *:"))
|
|
|
|
((parameters
|
|
(identifier) @constant.numeric)
|
|
(#match? @constant.numeric "^[-+]?[0-9]+(.[0-9]+)?$"))
|
|
|
|
"_" @constant
|
|
|
|
":" @punctuation.delimiter
|
|
|
|
[
|
|
"["
|
|
"]"
|
|
"("
|
|
")"
|
|
] @punctuation.bracket
|
|
|
|
"." @operator
|
|
|
|
(quantifier) @operator
|
|
|
|
(comment) @comment
|
|
|
|
(negated_field
|
|
"!" @operator
|
|
(identifier) @variable.other.member)
|
|
|
|
(field_definition
|
|
name: (identifier) @variable.other.member)
|
|
|
|
(named_node
|
|
name: (identifier) @tag)
|
|
|
|
(predicate name: (identifier) @error)
|
|
((predicate
|
|
"#" @function.builtin
|
|
name: (identifier) @function.builtin @_name
|
|
type: (predicate_type) @function.builtin)
|
|
(#any-of? @_name "eq" "not-eq" "match" "not-match" "any-of" "not-any-of" "is" "is-not" "not-same-line" "not-kind-eq" "set" "select-adjacent" "strip"))
|
|
|
|
(capture) @label
|
|
|
|
(escape_sequence) @constant.character.escape
|
|
|
|
(string) @string
|