about summary refs log tree commit diff
path: root/Completion/Core
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 11:04:57 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 11:04:57 +0000
commit63425a2279b15e64c5677f07628dfdb0449700da (patch)
tree3ba75aab5b20a8b705de4aa4eb669661150b65c8 /Completion/Core
parent4285f0578af1958f5a8fc63254ae508bab9468e0 (diff)
downloadzsh-63425a2279b15e64c5677f07628dfdb0449700da.tar.gz
zsh-63425a2279b15e64c5677f07628dfdb0449700da.tar.xz
zsh-63425a2279b15e64c5677f07628dfdb0449700da.zip
moved to Completion/Base/Core/_wanted
Diffstat (limited to 'Completion/Core')
-rw-r--r--Completion/Core/_wanted26
1 files changed, 0 insertions, 26 deletions
diff --git a/Completion/Core/_wanted b/Completion/Core/_wanted
deleted file mode 100644
index 3e25fdbbc..000000000
--- a/Completion/Core/_wanted
+++ /dev/null
@@ -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