mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
* feat(vue): switch to new parser --------- Co-authored-by: Phạm Huy Hoàng <hoangtun0810@gmail.com>
43 lines
715 B
Scheme
43 lines
715 B
Scheme
; inherits: html_tags
|
|
|
|
[
|
|
"["
|
|
"]"
|
|
] @punctuation.bracket
|
|
|
|
(interpolation) @punctuation.special
|
|
|
|
(interpolation
|
|
(raw_text) @none)
|
|
|
|
(dynamic_directive_inner_value) @variable
|
|
|
|
(directive_name) @tag.attribute
|
|
|
|
; Accessing a component object's field
|
|
(":"
|
|
.
|
|
(directive_value) @variable.member)
|
|
|
|
("."
|
|
.
|
|
(directive_value) @property)
|
|
|
|
; @click is like onclick for HTML
|
|
("@"
|
|
.
|
|
(directive_value) @function.method)
|
|
|
|
; Used in v-slot, declaring position the element should be put in
|
|
("#"
|
|
.
|
|
(directive_value) @variable)
|
|
|
|
(directive_attribute
|
|
(quoted_attribute_value) @punctuation.special)
|
|
|
|
(directive_attribute
|
|
(quoted_attribute_value
|
|
(attribute_value) @none))
|
|
|
|
(directive_modifier) @function.method
|