aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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: