Unnamed repository; edit this file 'description' to name the repository.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; Vue SFC blocks and template elements as xml-element textobjects, mirroring
; html. <script>/<style> bodies are a single raw_text child; template elements
; can hold many children.
(script_element (start_tag) (_) @xml-element.inside (end_tag)) @xml-element.around

(style_element (start_tag) (_) @xml-element.inside (end_tag)) @xml-element.around

(template_element (start_tag) (_)* @xml-element.inside (end_tag)) @xml-element.around

(element (start_tag) (_)* @xml-element.inside (end_tag))

(element) @xml-element.around

(comment) @comment.around