Remove single quotes from 'execute-keys -draft ...' keys

This commit is contained in:
John Isom 2020-08-01 09:56:02 -06:00
parent 0063e4c4f5
commit 783fac3d61

View File

@ -181,9 +181,9 @@ evaluate-commands %sh[
define-command -hidden crystal-indent-on-new-line %{
evaluate-commands -no-hooks -draft -itersel %{
# Copy previous line indent
try %{ execute-keys -draft 'K<a-&>' }
try %{ execute-keys -draft K <a-&> }
# Remove empty line indent
try %{ execute-keys -draft 'k<a-x>s^\h+$<ret>d' }
try %{ execute-keys -draft k <a-x> s ^\h+$ <ret> d }
}
}