1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-10-06 17:48:50 +03:00

Update deindentation in nix.kak

This commit is contained in:
John Isom 2020-07-29 17:04:01 -06:00
parent 5284196cb3
commit 858b0dd1c9

View File

@ -110,7 +110,7 @@ define-command -hidden nix-indent-on-new-line %<
# indent after lines beginning / ending with opener token
try %_ execute-keys -draft k <a-x> <a-k> ^\h*[[{]|[[{]$ <ret> j <a-gt> _
# deindent closer token(s) when after cursor
try %_ execute-keys -draft <a-x> <a-k>^\h*[}\]]+\h*$<ret> hm <a-S> 1<a-&> _
try %_ execute-keys -draft <a-x> <a-k> ^\h*[}\]] <ret> gh / [}\]] <ret> m <a-S> 1<a-&> _
>
>