From 50997c02b3109b025e54b8c9701d1767879f16cf Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Wed, 10 May 2000 13:32:23 +0000 Subject: 11299: edit-command-line zle widget --- Functions/Zle/edit-command-line | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Functions/Zle/edit-command-line (limited to 'Functions/Zle/edit-command-line') diff --git a/Functions/Zle/edit-command-line b/Functions/Zle/edit-command-line new file mode 100644 index 000000000..8019329bd --- /dev/null +++ b/Functions/Zle/edit-command-line @@ -0,0 +1,18 @@ +# Edit the command line using your usual editor. +# Binding this to 'v' in the vi command mode map, +# autoload edit-command-line +# zle -N edit-command-line +# bindkey -M vicmd v edit-command-line +# will give ksh-like behaviour for that key. + +local tmpfile=${TMPPREFIX:-/tmp/zsh}ecl$$ + +print $BUFFER >$tmpfile +exec