aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2014-12-19 20:54:01 -0800
committerTim Harder <radhermit@gentoo.org>2014-12-19 20:54:01 -0800
commit1858c7ba7dbae7f3424ba304b3b176a18add56af (patch)
treea954d11d9a165ba7a012b21f78d54826c275cbac
parentfix singular argument forcing (diff)
downloadzsh-completion-1858c7ba7dbae7f3424ba304b3b176a18add56af.tar.gz
zsh-completion-1858c7ba7dbae7f3424ba304b3b176a18add56af.tar.bz2
zsh-completion-1858c7ba7dbae7f3424ba304b3b176a18add56af.zip
_portage: remove old tbz2tool completion support
The related utility was removed from portage ~4 years ago.
-rw-r--r--src/_portage13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/_portage b/src/_portage
index 1c1831c..ed2ade5 100644
--- a/src/_portage
+++ b/src/_portage
@@ -1,4 +1,4 @@
-#compdef emerge ebuild quickpkg emaint env-update etc-update portageq repoman tbz2tool
+#compdef emerge ebuild quickpkg emaint env-update etc-update portageq repoman
_ebuild () {
if (( CURRENT == 2 )); then
@@ -333,14 +333,6 @@ _repoman () {
fi
}
-_tbz2tool () {
- if (( CURRENT == 2 )); then
- _values 'action' 'join' 'split'
- elif (( CURRENT > 2 )) && (( CURRENT < 6 )); then
- _arguments -s '*:file:_files'
- fi
-}
-
zparseopts -D -E -A Args -- -emerge
if (( ${+Args[--emerge]} )); then
_emerge "$@" && return 0
@@ -371,9 +363,6 @@ case "$service" in
repoman)
_repoman "$@" && return 0
;;
- tbz2tool)
- _tbz2tool "$@" && return 0
- ;;
esac
# vim: set et sw=2 ts=2 ft=zsh: