diff --git a/rc/filetype/crystal.kak b/rc/filetype/crystal.kak index c6397a41..725a2b3d 100644 --- a/rc/filetype/crystal.kak +++ b/rc/filetype/crystal.kak @@ -203,13 +203,13 @@ define-command -hidden crystal-insert-on-new-line %{ define-command -hidden crystal-indent-on-char %{ evaluate-commands -no-hooks -draft -itersel %{ # align 'else/elsif' to 'if' - try %{ execute-keys -draft ^\h*(?:else|elsif)$ i ^\h*(?:if) 1 } + try %{ execute-keys -draft ^\h*(?:else|elsif)$ i ^\h*(?:if) 1 } # align 'when' to 'case' - try %{ execute-keys -draft ^\h*(?:when)$ i ^\h*(?:case) 1 } + try %{ execute-keys -draft ^\h*(?:when)$ i ^\h*(?:case) 1 } # align 'rescue' to 'begin/def' - try %{ execute-keys -draft ^\h*(?:rescue)$ i ^\h*(?:begin|def) 1 } + try %{ execute-keys -draft ^\h*(?:rescue)$ i ^\h*(?:begin|def) 1 } # align 'end' to opening structure - try %{ execute-keys -draft ^\h*(?:end)$ i ^\h*(?:begin|case|class|def|for|if|module|unless|until|while) 1 } + try %{ execute-keys -draft ^\h*(?:end)$ i ^\h*(?:begin|case|class|def|for|if|module|unless|until|while) 1 } } }