diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | urpmi.bash-completion | 4 |
2 files changed, 6 insertions, 1 deletions
@@ -13,6 +13,9 @@ - urpmi: o do not say "files are missing" when the downloaded rpm is corrupted o --test: only display "Installation is possible" when it is the case (#29837) +- bash-completion: + o restore available-pkgs completion using "urpmq --list" (guillomovitch) + (but only if COMP_URPMI_HDLISTS is set since it's slow) Version 5.5 - 23 February 2008, by Pascal "Pixel" Rigaux diff --git a/urpmi.bash-completion b/urpmi.bash-completion index 41449699..47aa8d67 100644 --- a/urpmi.bash-completion +++ b/urpmi.bash-completion @@ -91,7 +91,9 @@ _urpmi() COMPREPLY=( $( compgen -W "$options" -- $cur ) ) else if [[ ${COMP_WORDS[0]} != *rurpmi ]]; then - # return rpm files (can't list available packages anymore) + if [ -n "${COMP_URPMI_HDLISTS:-}" ]; then + COMPREPLY=( $( compgen -W "$(urpmq --list)" -- $cur ) ) + fi _filedir rpm fi fi |