helix-mods/runtime/queries/templ/highlights.scm

59 lines
955 B
Scheme
Raw Normal View History

2024-04-03 03:31:44 +02:00
; inherits: go
2023-10-21 14:15:18 +02:00
2024-04-03 03:31:44 +02:00
(css_declaration
name: (css_identifier) @function)
(script_declaration
name: (script_identifier) @function)
2023-10-21 14:15:18 +02:00
(component_declaration
name: (component_identifier) @function)
(tag_start) @tag
(tag_end) @tag
(self_closing_tag) @tag
(style_element) @tag
(attribute
name: (attribute_name) @attribute)
(attribute
value: (quoted_attribute_value) @string)
(element_text) @string.special
(style_element_text) @string.special
(css_property
name: (css_property_name) @attribute)
2024-04-03 03:31:44 +02:00
(css_property
value: (css_property_value) @constant)
2023-10-21 14:15:18 +02:00
(expression) @function.method
(dynamic_class_attribute_value) @function.method
(component_import
name: (component_identifier) @function)
(component_render) @function
[
"@"
] @operator
[
"templ"
"css"
"type"
"script"
] @keyword.storage.type
[
(interpreted_string_literal)
(raw_string_literal)
(rune_literal)
] @string
; Comments
(comment) @comment
(element_comment) @comment