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.
39 lines
843 B
Scheme
39 lines
843 B
Scheme
8 months ago
|
[
|
||
|
(appexpr ["[" "("]) ; Applications.
|
||
|
(atom ["[" "("]) ; Lists and tuples.
|
||
|
(program (moduledecl "{")) ; Braced module declarations.
|
||
|
(funbody)
|
||
|
(block)
|
||
|
(handlerexpr)
|
||
|
(opclausex)
|
||
|
] @indent
|
||
|
|
||
|
[
|
||
|
(typedecl
|
||
|
[(typeid) (opdecls)]) ; Avoid matching single-operation effects.
|
||
|
(externdecl)
|
||
|
(matchexpr)
|
||
|
(matchrule)
|
||
|
|
||
|
; For ifexprs, branches (once they exist) will contain blocks if they're
|
||
|
; indented so we just need to make sure the initial indent happens when we're
|
||
|
; creating them.
|
||
|
"then"
|
||
|
"else"
|
||
|
] @indent @extend
|
||
|
|
||
|
(matchrule "->" @indent @extend)
|
||
|
|
||
|
; Handling for error recovery.
|
||
|
(ERROR "fun") @indent @extend
|
||
|
(ERROR "match") @indent @extend
|
||
|
(ERROR "->" @indent.always @extend)
|
||
|
|
||
|
; Don't outdent on function parameter declarations.
|
||
|
(atom ")" @outdent @extend.prevent-once)
|
||
|
|
||
|
[
|
||
|
"]"
|
||
|
"}"
|
||
|
] @outdent @extend.prevent-once
|