helix/runtime/queries/_jsx/highlights.scm
Michael Davis 5952d564d1
Reverse highlight precedence ordering (#9458)
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>
2025-02-02 18:17:10 -06:00

43 lines
931 B
Scheme

; Punctuation
; -----------
; Handle attribute delimiter (<Component color="red"/>)
(jsx_attribute "=" @punctuation.delimiter)
; <Component>
(jsx_opening_element ["<" ">"] @punctuation.bracket)
; </Component>
(jsx_closing_element ["</" ">"] @punctuation.bracket)
; <Component />
(jsx_self_closing_element ["<" "/>"] @punctuation.bracket)
; Attributes
; ----------
(jsx_attribute (property_identifier) @attribute)
; Opening elements
; ----------------
(jsx_opening_element (identifier) @tag)
(jsx_opening_element ((identifier) @constructor
(#match? @constructor "^[A-Z]")))
; Closing elements
; ----------------
(jsx_closing_element (identifier) @tag)
(jsx_closing_element ((identifier) @constructor
(#match? @constructor "^[A-Z]")))
; Self-closing elements
; ---------------------
(jsx_self_closing_element (identifier) @tag)
(jsx_self_closing_element ((identifier) @constructor
(#match? @constructor "^[A-Z]")))