summaryrefslogtreecommitdiff
path: root/Completion/Debian/_apt-cache
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-09-11 01:46:21 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-09-11 01:46:21 +0000
commit48306f7ac45df11fed092383fd2ea798bc91fdec (patch)
treeb07eca60d70382274e235ecdd3b7439729c7d605 /Completion/Debian/_apt-cache
parent03902f7a0526dec3a2587d831b505f12acf28490 (diff)
downloadzsh-48306f7ac45df11fed092383fd2ea798bc91fdec.tar.gz
zsh-48306f7ac45df11fed092383fd2ea798bc91fdec.zip
remove _apt-cache _apt-get _apt_arguments
Diffstat (limited to 'Completion/Debian/_apt-cache')
-rw-r--r--Completion/Debian/_apt-cache40
1 files changed, 0 insertions, 40 deletions
diff --git a/Completion/Debian/_apt-cache b/Completion/Debian/_apt-cache
deleted file mode 100644
index 79fab7aef..000000000
--- a/Completion/Debian/_apt-cache
+++ /dev/null
@@ -1,40 +0,0 @@
-#compdef apt-cache
-
-_apt_arguments _apt-cache_sm \
- -h,--help:bool \
- -v,--version:bool \
- -p,--pkg-cache:'_files "$expl_pkg_cache[@]"' \
- -s,--src-cache:'_files "$expl_src_cache[@]"' \
- -q,--quiet:intlevel \
- -i,--important:bool \
- -f,--full:bool \
- --name-only:bool \
- -c,--config-file:configfile \
- -o,--option:arbitem \
- -- \
- \( \
- /$'help\0' \| \
- /$'add\0' /$'[^\0]#\0' !'_files' \# \| \
- /$'gencaches\0' \| \
- /$'showpkg\0' /$'[^\0]#\0' !'_deb_packages avail "$expl_packages[@]"' \# \| \
- /$'stats\0' \| \
- /$'dump\0' \| \
- /$'dumpavail\0' \| \
- /$'unmet\0' \| \
- /$'check\0' \| \
- /$'search\0' \| \
- /$'show\0' \| \
- /"[]" !'compadd "$expl_action[@]" help add gencaches showpkg stats dump dumpavail unmet check search show' \
- \)
-
-_apt-cache () {
- local expl_action expl_packages expl_pkg_cache expl_src_cache
- _description expl_action action
- _description expl_packages 'package'
- _description expl_pkg_cache 'package cache'
- _description expl_src_cache 'source cache'
-
- _apt-cache_sm
-}
-
-_apt-cache "$@"