1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-29 06:51:03 +02:00

moved to Completion/Base/Core/_wanted

This commit is contained in:
Sven Wischnowsky 2001-04-02 11:04:57 +00:00
parent 4285f0578a
commit 63425a2279

View file

@ -1,26 +0,0 @@
#autoload
local __targs __gopt=-J
if [[ "$1" = -C?* ]]; then
__targs=( -C "${1[3,-1]}" )
shift
elif [[ "$1" = -C ]]; then
__targs=( -C "$2" )
shift 2
else
__targs=()
fi
if [[ "$1" = -([12]|)[VJ] ]]; then
__gopt="$1"
shift
fi
_tags "$__targs[@]" "$1"
while _tags; do
_all_labels "$__gopt" "$@" && return 0
done
return 1