aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDaniel Schauenberg2010-03-05 01:02:14 +0100
committerAdam Vandenberg2010-03-09 09:03:51 -0800
commit07f13ea57e28353de5b40d0498948e2e708b781e (patch)
tree25b39d144a7c0972d70ee3f0e406c5f27fd47715 /Library
parent7c538af4c4d6f673da8fd778e4fdb755eab2f8c0 (diff)
downloadhomebrew-07f13ea57e28353de5b40d0498948e2e708b781e.tar.bz2
Bring zsh completion command list more up-to-date
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Contributions/brew_zsh_completion.zsh6
1 files changed, 5 insertions, 1 deletions
diff --git a/Library/Contributions/brew_zsh_completion.zsh b/Library/Contributions/brew_zsh_completion.zsh
index 12f3081c8..cba74df40 100644
--- a/Library/Contributions/brew_zsh_completion.zsh
+++ b/Library/Contributions/brew_zsh_completion.zsh
@@ -30,6 +30,10 @@ _1st_arguments=(
'create:create a new formula'
'edit:edit a formula'
'uses:show formulas which depend on a formula'
+ 'outdated:list formulas for which a newer version is available'
+ 'cleanup:uninstall unused and old versions of packages'
+ 'deps:list dependencies and dependants of a formula'
+ 'cat:display formula file for a formula'
)
local expl
@@ -57,7 +61,7 @@ case "$words[1]" in
_brew_installed_formulae
_requested installed_formulae expl 'installed formulae' compadd -a installed_formulae
fi ;;
- install|home|log|info|uses)
+ install|home|log|info|uses|cat|deps)
_brew_all_formulae
_wanted formulae expl 'all formulae' compadd -a formulae ;;
remove|edit|xo)