From: Alexander Barton Date: Tue, 22 Jun 2010 16:03:50 +0000 (+0200) Subject: Added support for brew command "uses" X-Git-Url: https://arthur.barton.de/gitweb/?p=brew-completion.git;a=commitdiff_plain;h=ce9f519bcce66941ba9d7f2bb212f3fbfb000396 Added support for brew command "uses" --- diff --git a/brew-completion.sh b/brew-completion.sh index 6cca8a3..7e9425b 100644 --- a/brew-completion.sh +++ b/brew-completion.sh @@ -48,7 +48,7 @@ _brew() done case "$cmd" in - "cat"|"cleanup"|"deps"|"edit"|"home"|"log"|"prune" \ + "cat"|"cleanup"|"deps"|"edit"|"home"|"log"|"prune"|"uses" \ |"--cache"|"--cellar"|"--prefix") _brew_formula "$cur" return 0 @@ -112,7 +112,7 @@ _brew() elif [ "$cmd" = "" ]; then COMPREPLY=( $(compgen -W 'cat cleanup create deps edit home \ info install link list log outdated prune remove \ - search uninstall unlink update $EXTCMD' \ + search uninstall unlink update uses $EXTCMD' \ -- "$cur") ) fi }