mirror of https://github.com/helix-editor/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
407 B
Scheme
38 lines
407 B
Scheme
8 months ago
|
; See: https://docs.helix-editor.com/guides/indent.html
|
||
|
|
||
|
; indent
|
||
|
; ------
|
||
|
|
||
|
[
|
||
|
; <..., ...>
|
||
|
(formals)
|
||
|
(params)
|
||
|
|
||
|
; (...| ...)
|
||
|
(alt)
|
||
|
] @indent
|
||
|
|
||
|
; outdent
|
||
|
; -------
|
||
|
|
||
|
[
|
||
|
"}"
|
||
|
")"
|
||
|
">"
|
||
|
] @outdent
|
||
|
|
||
|
; align
|
||
|
; -----
|
||
|
|
||
|
; | ... | ...
|
||
|
(rule_body
|
||
|
. (top_level_term) @anchor
|
||
|
(#set! "scope" "tail")) @align
|
||
|
|
||
|
; N/A or unused:
|
||
|
; --------------
|
||
|
; indent.always
|
||
|
; outdent.always
|
||
|
; extend
|
||
|
; extend.prevent-once
|