diff options
-rw-r--r-- | bash-completion/adjutrix | 1 | ||||
-rw-r--r-- | bash-completion/importare | 6 | ||||
-rw-r--r-- | bash-completion/paludis | 7 | ||||
-rw-r--r-- | bash-completion/reconcilio | 6 |
4 files changed, 5 insertions, 15 deletions
diff --git a/bash-completion/adjutrix b/bash-completion/adjutrix index 0be3a8d26..bd01b1e6d 100644 --- a/bash-completion/adjutrix +++ b/bash-completion/adjutrix @@ -47,6 +47,7 @@ _adjutrix() { --log-level \ --no-colour \ --no-color \ + --no-suggestions \ --repository-dir -D \ --category -C \ --package -P \ diff --git a/bash-completion/importare b/bash-completion/importare index c2b6b1aee..85e2c3c07 100644 --- a/bash-completion/importare +++ b/bash-completion/importare @@ -118,11 +118,7 @@ _importare() { COMPREPLY=($(compgen -W "never always daily weekly" -- "${cur}")) return 0 ;; - --dl-upgrade) - COMPREPLY=($(compgen -W "always as-needed" -- "${cur}")) - return 0 - ;; - --dl-new-slots) + --dl-upgrade|--dl-new-slots) COMPREPLY=($(compgen -W "always as-needed" -- "${cur}")) return 0 ;; diff --git a/bash-completion/paludis b/bash-completion/paludis index 8ab8131af..d6e33e592 100644 --- a/bash-completion/paludis +++ b/bash-completion/paludis @@ -67,6 +67,7 @@ _paludis() { general_opts="--log-level \ --no-colour \ --no-color \ + --no-suggestions \ --environment -E \ --resume-command-template \ --multitask" @@ -253,11 +254,7 @@ _paludis() { COMPREPLY=($(compgen -W "auto never always" -- "${cur}")) return 0 ;; - --dl-upgrade) - COMPREPLY=($(compgen -W "always as-needed" -- "${cur}")) - return 0 - ;; - --dl-new-slots) + --dl-upgrade|--dl-new-slots) COMPREPLY=($(compgen -W "always as-needed" -- "${cur}")) return 0 ;; diff --git a/bash-completion/reconcilio b/bash-completion/reconcilio index c3686864b..33624d25e 100644 --- a/bash-completion/reconcilio +++ b/bash-completion/reconcilio @@ -122,11 +122,7 @@ _reconcilio() { COMPREPLY=($(compgen -W "never always daily weekly" -- "${cur}")) return 0 ;; - --dl-upgrade) - COMPREPLY=($(compgen -W "always as-needed" -- "${cur}")) - return 0 - ;; - --dl-new-slots) + --dl-upgrade|--dl-new-slots) COMPREPLY=($(compgen -W "always as-needed" -- "${cur}")) return 0 ;; |