summaryrefslogtreecommitdiff
path: root/rc/filetype/lua.kak
diff options
context:
space:
mode:
Diffstat (limited to 'rc/filetype/lua.kak')
-rw-r--r--rc/filetype/lua.kak4
1 files changed, 2 insertions, 2 deletions
diff --git a/rc/filetype/lua.kak b/rc/filetype/lua.kak
index 64a5a5a2..7e9c0657 100644
--- a/rc/filetype/lua.kak
+++ b/rc/filetype/lua.kak
@@ -78,8 +78,8 @@ define-command lua-alternative-file -docstring 'Jump to the alternate file (impl
define-command -hidden lua-indent-on-char %{
evaluate-commands -no-hooks -draft -itersel %{
# align middle and end structures to start and indent when necessary, elseif is already covered by else
- try %{ execute-keys -draft <a-x><a-k>^\h*(else)$<ret><a-\;><a-?>^\h*(if)<ret>s\A|\z<ret>)<a-&> }
- try %{ execute-keys -draft <a-x><a-k>^\h*(end)$<ret><a-\;><a-?>^\h*(for|function|if|while)<ret>s\A|\z<ret>)<a-&> }
+ try %{ execute-keys -draft <a-x><a-k>^\h*(else)$<ret><a-semicolon><a-?>^\h*(if)<ret>s\A|\z<ret>)<a-&> }
+ try %{ execute-keys -draft <a-x><a-k>^\h*(end)$<ret><a-semicolon><a-?>^\h*(for|function|if|while)<ret>s\A|\z<ret>)<a-&> }
}
}