From a6329b4bfc0efa101cb15ac6a6be558562ab54a6 Mon Sep 17 00:00:00 2001 From: John Isom Date: Sat, 1 Aug 2020 11:18:41 -0600 Subject: [PATCH] Fix deindentation of `end` to make it go to the right level --- rc/filetype/crystal.kak | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rc/filetype/crystal.kak b/rc/filetype/crystal.kak index 30a16e93..c6397a41 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)$ ^\h*(?:if) 1 } + try %{ execute-keys -draft ^\h*(?:else|elsif)$ i ^\h*(?:if) 1 } # align 'when' to 'case' - try %{ execute-keys -draft ^\h*(?:when)$ ^\h*(?:case) 1 } + try %{ execute-keys -draft ^\h*(?:when)$ i ^\h*(?:case) 1 } # align 'rescue' to 'begin/def' - try %{ execute-keys -draft ^\h*(?:rescue)$ ^\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)$ ^\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 } } }