08b442f4cc
JavaScript queries now contain a few lines that prevent them from being used whole-sale in typescript with `; inherits: javascript`. Here we follow nvim-treesitter's way of using a fake 'ecma' language as a common base for JavaScript and TypeScript to share as much as we can.
27 lines
983 B
Scheme
27 lines
983 B
Scheme
; inherits: ecma
|
|
|
|
; 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_closing_element (identifier) @tag)
|
|
(jsx_self_closing_element (identifier) @tag)
|
|
(jsx_attribute (property_identifier) @variable.other.member)
|