# HG changeset patch # User Augie Fackler # Date 1294944252 21600 # Node ID 0f226b0af88a3789ff847e0555dc722ae14478c8 # Parent b14e669b98bff84dc3bc8aa6c63ab2334fca4d2d zsh: support for editing current command in $EDTIOR diff --git a/.shell.d/50.misc_setup.zsh b/.shell.d/50.misc_setup.zsh new file mode 100644 --- /dev/null +++ b/.shell.d/50.misc_setup.zsh @@ -0,0 +1,4 @@ +# edit current command line in $EDITOR support +autoload edit-command-line +zle -N edit-command-line +bindkey '^X^e' edit-command-line