diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:28:16 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:28:16 +0000 |
commit | 553ecfcd75b7cb6d6d9b7b1e6a4bd88c0fa69eb6 (patch) | |
tree | d0036cf9c63e233249f019e261192768a4098513 | |
parent | 62aa2c6b686f955e1f5f354df4990fbbf53cac49 (diff) | |
download | zsh-553ecfcd75b7cb6d6d9b7b1e6a4bd88c0fa69eb6.tar.gz zsh-553ecfcd75b7cb6d6d9b7b1e6a4bd88c0fa69eb6.tar.xz zsh-553ecfcd75b7cb6d6d9b7b1e6a4bd88c0fa69eb6.zip |
moved to ./Functions/Misc/zed
-rw-r--r-- | Functions/Misc/zed | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/Functions/Misc/zed b/Functions/Misc/zed deleted file mode 100644 index 3cee176a1..000000000 --- a/Functions/Misc/zed +++ /dev/null @@ -1,70 +0,0 @@ -# -# zed -# -# No other shell could do this. -# Edit small files with the command line editor. -# Use ^X^W to save, ^C to abort. -# Option -f: edit shell functions. (Also if called as fned.) -# -# Completion: use -# compctl -f -x 'w[1,-f]' -F -- zed -# - -local var fun cleanup -# We do not want timeout while we are editing a file -integer TMOUT=0 - -[[ $1 = -f || $0 = fned ]] && fun=1 -[[ $1 = -(|-|f) ]] && shift - -[[ -z "$1" ]] && echo 'Usage: "zed filename" or "zed -f function"' && return 1 - -local curcontext=zed::: - -zstyle -m ":completion:zed:*" insert-tab '*' || - zstyle ":completion:zed:*" insert-tab yes - -# catch interrupts -cleanup="$(bindkey -L "^M"; bindkey -L -M emacs "^X^W"; bindkey -aL "ZZ" - echo "trap - INT EXIT"; trap)" -trap "return 130" INT -trap "$cleanup" EXIT - -# don't mangle !'s -setopt localoptions nobanghist - -bindkey "^M" self-insert-unmeta -# Depending on your stty's, you may be able to use ^J as accept-line, else: -bindkey -M emacs "^X^W" accept-line -bindkey -a "ZZ" accept-line - -if ((fun)) then - var="$(functions $1)" - # If function is undefined but autoloadable, load it - if [[ $var = *\#\ undefined* ]] then - local dir - for dir in $fpath; do - if [[ -f $dir/$1 ]] then - var="$1() { -$(<$dir/$1) -}" - break - fi - done - elif [[ -z $var ]] then - var="$1() { -}" - fi - vared var && eval "$cleanup ;" function "$var" -else - [[ -f $1 ]] && var="$(<$1)" - while vared var - do - (print -r -- "$var" >| $1) && break - echo -n -e '\a' - done -fi - -return 0 - -# End of zed |