We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d91862a commit df89295Copy full SHA for df89295
2 files changed
languages/heex/indents.scm
@@ -0,0 +1,20 @@
1
+[
2
+ (start_tag ">" @end)
3
+ (self_closing_tag "/>" @end)
4
+ (start_slot ">" @end)
5
+ (self_closing_slot "/>" @end)
6
+ (start_component ">" @end)
7
+ (self_closing_component "/>" @end)
8
+] @indent
9
+
10
11
+ (tag
12
+ (start_tag) @start
13
+ (end_tag)? @end)
14
+ (slot
15
+ (start_slot) @start
16
+ (end_slot)? @end)
17
+ (component
18
+ (start_component) @start
19
+ (end_component)? @end)
20
languages/heex/outline.scm
@@ -0,0 +1,13 @@
+(comment) @annotation
+ (start_tag
+ (tag_name) @name))
+ (start_slot
+ (slot_name) @name))
+ (start_component
+ (component_name) @name))
+] @item
0 commit comments