Files
helix/runtime/queries/ohm/indents.scm
Blaž Hrastnik 3013c107d5 indent: Rewrite engine by calculating containment scopes
Replaces the tail/all ancestor-sum walk with "indent = number of
@indent scopes containing the line".

Brace-less bodies use a new `scope "header"` annotation, the dead
tail/all scope annotations are removed from the indent queries.
2026-06-07 22:15:42 +09:00

38 lines
385 B
Scheme

; See: https://docs.helix-editor.com/guides/indent.html
; indent
; ------
[
; <..., ...>
(formals)
(params)
; (...| ...)
(alt)
] @indent
; outdent
; -------
[
"}"
")"
">"
] @outdent
; align
; -----
; | ... | ...
(rule_body
. (top_level_term) @anchor
) @align
; N/A or unused:
; --------------
; indent.always
; outdent.always
; extend
; extend.prevent-once