mirror of https://github.com/helix-editor/helix
jsx: Add special highlighting to component names
parent
a24fb17b2a
commit
855e438f55
|
@ -1,6 +1,28 @@
|
||||||
; JSX
|
; JSX
|
||||||
;----
|
;----
|
||||||
|
|
||||||
|
; Highlight component names differently
|
||||||
|
|
||||||
|
(jsx_opening_element ((identifier) @constructor
|
||||||
|
(#match? @constructor "^[A-Z]")))
|
||||||
|
|
||||||
|
; Handle the dot operator effectively - <My.Component>
|
||||||
|
(jsx_opening_element ((nested_identifier (identifier) @tag (identifier) @constructor)))
|
||||||
|
|
||||||
|
(jsx_closing_element ((identifier) @constructor
|
||||||
|
(#match? @constructor "^[A-Z]")))
|
||||||
|
|
||||||
|
; Handle the dot operator effectively - </My.Component>
|
||||||
|
(jsx_closing_element ((nested_identifier (identifier) @tag (identifier) @constructor)))
|
||||||
|
|
||||||
|
(jsx_self_closing_element ((identifier) @constructor
|
||||||
|
(#match? @constructor "^[A-Z]")))
|
||||||
|
|
||||||
|
; Handle the dot operator effectively - <My.Component />
|
||||||
|
(jsx_self_closing_element ((nested_identifier (identifier) @tag (identifier) @constructor)))
|
||||||
|
|
||||||
|
; TODO: also tag @punctuation.delimiter?
|
||||||
|
|
||||||
(jsx_opening_element (identifier) @tag)
|
(jsx_opening_element (identifier) @tag)
|
||||||
(jsx_closing_element (identifier) @tag)
|
(jsx_closing_element (identifier) @tag)
|
||||||
(jsx_self_closing_element (identifier) @tag)
|
(jsx_self_closing_element (identifier) @tag)
|
||||||
|
|
Loading…
Reference in New Issue