nvim-treesitter/queries/heex/highlights.scm
2022-01-24 08:29:42 +01:00

51 lines
787 B
Scheme

; HEEx tag and component delimiters
[
"%>"
"--%>"
"-->"
"/>"
"<!"
"<!--"
"<"
"<%!--"
"<%"
"<%#"
"<%%="
"<%="
"</"
">"
"{"
"}"
] @tag.delimiter
; HEEx operators
"=" @operator
; HEEx inherits the DOCTYPE tag from HTML
(doctype) @constant
; HEEx tags are highlighted as HTML tags
(tag_name) @tag
; HEEx comments are highlighted as such
(comment) @comment
; HEEx text content is treated as markup
(text) @text
; Tree-sitter parser errors
(ERROR) @error
; HEEx attributes are highlighted as HTML attributes
(attribute_name) @tag.attribute
[
(attribute_value)
(quoted_attribute_value)
] @string
; HEEx components are highlighted as modules and function calls
(component_name [
(module) @type
(function) @function
"." @punctuation.delimiter
])