From e7e55a73c14a7b56d17f3c9e141e4148f566b6f5 Mon Sep 17 00:00:00 2001 From: Sven Wischnowsky Date: Mon, 2 Apr 2001 11:22:30 +0000 Subject: moved to Completion/Zsh/Context/_default --- Completion/Base/_default | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 Completion/Base/_default (limited to 'Completion/Base') diff --git a/Completion/Base/_default b/Completion/Base/_default deleted file mode 100644 index 8176f392c..000000000 --- a/Completion/Base/_default +++ /dev/null @@ -1,27 +0,0 @@ -#compdef -default- - -local ctl - -if { zstyle -s ":completion:${curcontext}:" use-compctl ctl || - zmodload -e zsh/compctl } && [[ "$ctl" != (no|false|0|off) ]]; then - local opt - - opt=() - [[ "$ctl" = *first* ]] && opt=(-T) - [[ "$ctl" = *default* ]] && opt=("$opt[@]" -D) - compcall "$opt[@]" || return 0 -fi - -_files "$@" && return 0 - -# magicequalsubst allows arguments like =~/foo to do -# file name expansion after the =. In that case, it's natural to -# allow completion to handle file names after any equals sign. - -if [[ -o magicequalsubst && "$PREFIX" = *\=* ]]; then - compstate[parameter]="${words[1]:t}-${PREFIX%%\=*}" - compset -P 1 '*=' - _value "$@" -else - return 1 -fi -- cgit 1.4.1