diff --git a/rc/filetype/crystal.kak b/rc/filetype/crystal.kak index dbb1168c..65378666 100644 --- a/rc/filetype/crystal.kak +++ b/rc/filetype/crystal.kak @@ -186,6 +186,19 @@ define-command -hidden crystal-trim-indent %{ } } +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 } + # align 'when' to 'case' + 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 } + # align 'end' to opening structure + try %{ execute-keys -draft ^\h*(?:end)$ i ^\h*(?:begin|case|class|def|for|if|module|unless|until|while) 1 } + } +} + define-command -hidden crystal-indent-on-new-line %{ evaluate-commands -no-hooks -draft -itersel %{ # Copy previous line indent @@ -204,19 +217,6 @@ 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 } - # align 'when' to 'case' - 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 } - # align 'end' to opening structure - try %{ execute-keys -draft ^\h*(?:end)$ i ^\h*(?:begin|case|class|def|for|if|module|unless|until|while) 1 } - } -} - define-command -hidden crystal-fetch-keywords %{ set-register dquote %sh{ curl --location https://github.com/crystal-lang/crystal/raw/master/src/compiler/crystal/syntax/lexer.cr |