diff options
author | 2007-11-11 17:33:30 +0000 | |
---|---|---|
committer | 2007-11-11 17:33:30 +0000 | |
commit | 1d45867677c8591feafaf15b7f22a286d71c4aa6 (patch) | |
tree | cdebfc99fe457a9b6c05778aeb7e505706d87b79 | |
parent | ef9e3356037b14848747d9955e561c41bd9bf7f6 (diff) | |
download | paludis-1d45867677c8591feafaf15b7f22a286d71c4aa6.tar.gz paludis-1d45867677c8591feafaf15b7f22a286d71c4aa6.tar.xz |
Update bash-completion.
-rw-r--r-- | bash-completion/paludis | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/bash-completion/paludis b/bash-completion/paludis index b2e7869e5..c62d99db4 100644 --- a/bash-completion/paludis +++ b/bash-completion/paludis @@ -68,7 +68,8 @@ _paludis() { --no-colour \ --no-color \ --environment -E \ - --resume-command-template" + --resume-command-template \ + --multitask" deplist_opts="--dl-reinstall \ --dl-reinstall-scm \ @@ -91,7 +92,8 @@ _paludis() { --dl-fall-back" query_opts="--show-deps -D \ - --show-metadata -M" + --show-metadata -M \ + --compact" install_opts="--pretend -p \ --destinations -d \ --preserve-world -1 \ @@ -103,7 +105,9 @@ _paludis() { --no-safe-resume \ --show-reasons \ --show-use-descriptions \ + --show-package-descriptions \ --continue-on-failure \ + --compact \ ${deplist_opts}" uninstall_opts="--pretend -p \ --destinations -d \ @@ -111,6 +115,7 @@ _paludis() { --no-config-protection \ --show-reasons \ --show-use-descriptions \ + --show-package-descriptions \ --with-unused-dependencies \ --permit-unsafe-uninstalls \ --with-dependencies \ @@ -227,8 +232,12 @@ _paludis() { COMPREPLY=($(compgen -W "none new changed all" -- "${cur}")) return 0 ;; + --show-package-descriptions) + COMPREPLY=($(compgen -W "none new all" -- "${cur}")) + return 0 + ;; --continue-on-failure) - COMPREPLY=($(compgen -W "if-fetch-only never if-satisfied always" -- "${cur}")) + COMPREPLY=($(compgen -W "if-fetch-only never if-satisfied if-independent always" -- "${cur}")) return 0 ;; |