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.
59 lines
1.0 KiB
Scheme
59 lines
1.0 KiB
Scheme
3 years ago
|
; https://github.com/connorlay/tree-sitter-heex/blob/592e22292a367312c35e13de7fdb888f029981d6/queries/highlights.scm
|
||
|
; HEEx delimiters
|
||
|
[
|
||
|
"<!"
|
||
|
"<!--"
|
||
|
"<"
|
||
|
"<%!--"
|
||
|
"<%#"
|
||
|
">"
|
||
|
"</"
|
||
|
"--%>"
|
||
|
"-->"
|
||
|
"/>"
|
||
|
"{"
|
||
|
"}"
|
||
|
; These could be `@keyword`s but the closing `>` wouldn't be highlighted
|
||
|
; as `@keyword`
|
||
|
"<:"
|
||
|
"</:"
|
||
|
] @punctuation.bracket
|
||
|
|
||
|
; Non-comment or tag delimiters
|
||
|
[
|
||
|
"<%"
|
||
|
"<%="
|
||
|
"<%%="
|
||
|
"%>"
|
||
|
] @keyword
|
||
|
|
||
|
; HEEx operators are highlighted as such
|
||
|
"=" @operator
|
||
|
|
||
|
; HEEx inherits the DOCTYPE tag from HTML
|
||
|
(doctype) @constant
|
||
|
|
||
|
; HEEx comments are highlighted as such
|
||
|
(comment) @comment
|
||
|
|
||
|
; HEEx tags are highlighted as HTML
|
||
|
(tag_name) @tag
|
||
|
|
||
|
; HEEx slots are highlighted as atoms (symbols)
|
||
|
(slot_name) @string.special.symbol
|
||
|
|
||
|
; HEEx attributes are highlighted as HTML attributes
|
||
|
(attribute_name) @attribute
|
||
|
[
|
||
|
(attribute_value)
|
||
|
(quoted_attribute_value)
|
||
|
] @string
|
||
|
|
||
|
; HEEx components are highlighted as Elixir modules and functions
|
||
|
(component_name
|
||
|
[
|
||
|
(module) @module
|
||
|
(function) @function
|
||
|
"." @punctuation.delimiter
|
||
|
])
|