mirror of https://github.com/helix-editor/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
642 B
Scheme
47 lines
642 B
Scheme
3 years ago
|
; mark the string passed #match? as a regex
|
||
|
(((predicate_name) @function
|
||
|
(capture)
|
||
|
(string) @string.regexp)
|
||
|
(#eq? @function "#match?"))
|
||
|
|
||
|
; highlight inheritance comments
|
||
|
((query . (comment) @keyword.directive)
|
||
|
(#match? @keyword.directive "^;\ +inherits *:"))
|
||
|
|
||
|
[
|
||
|
"("
|
||
|
")"
|
||
|
"["
|
||
|
"]"
|
||
|
] @punctuation.bracket
|
||
|
|
||
|
":" @punctuation.delimiter
|
||
|
|
||
|
[
|
||
|
(one_or_more)
|
||
|
(zero_or_one)
|
||
|
(zero_or_more)
|
||
|
] @operator
|
||
|
|
||
|
[
|
||
|
(wildcard_node)
|
||
|
(anchor)
|
||
|
] @constant.builtin
|
||
|
|
||
|
[
|
||
|
(anonymous_leaf)
|
||
|
(string)
|
||
|
] @string
|
||
|
|
||
|
(comment) @comment
|
||
|
|
||
|
(field_name) @property
|
||
|
|
||
|
(capture) @label
|
||
|
|
||
|
(predicate_name) @function
|
||
|
|
||
|
(escape_sequence) @escape
|
||
|
|
||
|
(node_name) @variable
|