aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2011-05-04 20:35:56 -0500
committerAdam Vandenberg2011-05-04 19:23:39 -0700
commit489b589a133837be2e278e2929587b346bf6ee10 (patch)
tree57a24f478d0e22cf8b767b7ff3d643e9ad4f8590 /Library
parentb729704b0d88721e7089768c8d76bdd5695b69e8 (diff)
downloadhomebrew-489b589a133837be2e278e2929587b346bf6ee10.tar.bz2
Update bash completion script
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Contributions/brew_bash_completion.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Contributions/brew_bash_completion.sh b/Library/Contributions/brew_bash_completion.sh
index c4aeeaf84..195478a2f 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}) )