aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-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 ae5342a81..86c4036e6 100644
--- a/Library/Contributions/brew_bash_completion.sh
+++ b/Library/Contributions/brew_bash_completion.sh
@@ -12,7 +12,7 @@ _brew_to_completion()
cur="${COMP_WORDS[COMP_CWORD]}"
# We only complete unabbreviated commands...
- actions="cat cleanup configure create deps edit generate homepage info install list link outdated prune remove search unlink update uses"
+ actions="cat cleanup configure create deps edit generate homepage info install list link log outdated prune remove search unlink update uses"
if [[ ( ${COMP_CWORD} -eq 1 ) && ( ${COMP_WORDS[0]} == brew ) ]] ; then
# Subcommand list
@@ -33,7 +33,7 @@ _brew_to_completion()
case ${prev} in
# Commands that take a formula...
- cat|deps|edit|install|home|homepage|uses)
+ cat|deps|edit|home|homepage|install|log|uses)
formulae=`ls ${brew_base}/Library/Formula/ | sed "s/\.rb//g"`
COMPREPLY=( $(compgen -W "${formulae}" -- ${cur}) )
return 0