From d88b562926da7835bcc50f2c118123becdf1a4d2 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Wed, 4 May 2011 20:35:56 -0500 Subject: [PATCH] Update bash completion script Signed-off-by: Adam Vandenberg --- Library/Contributions/brew_bash_completion.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Library/Contributions/brew_bash_completion.sh b/Library/Contributions/brew_bash_completion.sh index c4aeeaf841..195478a2f8 100644 --- a/Library/Contributions/brew_bash_completion.sh +++ b/Library/Contributions/brew_bash_completion.sh @@ -9,9 +9,9 @@ _brew_to_completion() # Subcommand list [[ ${COMP_CWORD} -eq 1 ]] && { - local actions="--cache --config --prefix audit cat cleanup configure create - deps doctor edit home info install link list log outdated prune - remove search unlink update uses" + local actions="--cache --cellar --config --env --prefix --repository audit cat cleanup + configure create deps doctor edit fetch help home info install link list log options + outdated prune search test uninstall unlink update uses" local ext=$(\ls $(brew --repository)/Library/Contributions/examples | sed -e "s/\.rb//g" -e "s/brew-//g") COMPREPLY=( $(compgen -W "${actions} ${ext}" -- ${cur}) )