nvim-treesitter/runtime/queries/heex/indents.scm

21 lines
388 B
Scheme
Raw Permalink Normal View History

2022-01-30 16:15:24 -08:00
; HEEx tags, components, and slots indent like HTML
[
(component)
2022-01-30 16:15:24 -08:00
(slot)
(tag)
] @indent.begin
2022-01-30 16:15:24 -08:00
; Dedent at the end of each tag, component, and slot
[
(end_component)
2022-01-30 16:15:24 -08:00
(end_slot)
(end_tag)
] @indent.branch @indent.dedent
2022-01-30 16:15:24 -08:00
; Self-closing tags and components should not change
; indentation level of sibling nodes
[
(self_closing_component)
(self_closing_tag)
] @indent.auto