aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Contributions/brew_bash_completion.sh
diff options
context:
space:
mode:
authorAdam Vandenberg2009-09-22 17:13:21 -0700
committerMax Howell2009-09-25 18:58:06 +0100
commit1e3dff7b8ed78fb3e2ffcca64282f45362d5dcd1 (patch)
tree591e4b55ceb7e77e2d95ae2357239b680ac3023e /Library/Contributions/brew_bash_completion.sh
parenta3668bef76d66cd3295280b771d2ff2ffac0b58d (diff)
downloadbrew-1e3dff7b8ed78fb3e2ffcca64282f45362d5dcd1.tar.bz2
Update bash completions.
Diffstat (limited to 'Library/Contributions/brew_bash_completion.sh')
-rw-r--r--Library/Contributions/brew_bash_completion.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Contributions/brew_bash_completion.sh b/Library/Contributions/brew_bash_completion.sh
index 78f846626..d832cc41a 100644
--- a/Library/Contributions/brew_bash_completion.sh
+++ b/Library/Contributions/brew_bash_completion.sh
@@ -13,7 +13,7 @@ _brew_to_completion()
prev="${COMP_WORDS[COMP_CWORD-1]}"
# We only complete unabbreviated commands...
- actions="edit generate homepage info install list link uninstall"
+ actions="configure create edit generate homepage info install list link options prune remove search unlink update"
# Subcommand list
if [[ ( ${COMP_CWORD} -eq 1 ) && ( ${COMP_WORDS[0]} == brew ) ]] ; then
@@ -33,7 +33,7 @@ _brew_to_completion()
;;
# Commands that take an existing brew...
- abv|info|list|link|ls|ln|rm|remove|uninstall)
+ abv|info|list|link|ls|ln|rm|remove|uninstall|unlink)
cellar_contents=`ls ${brew_base}/Cellar/`
COMPREPLY=( $(compgen -W "${cellar_contents}" -- ${cur}) )
return 0