2009-10-26 10:54:32 -04:00
|
|
|
#compdef brew
|
|
|
|
|
|
|
|
# Brew ZSH completion function
|
|
|
|
# Drop this somewhere in your $fpath (like /usr/share/zsh/site-functions)
|
|
|
|
# and rename it _brew
|
|
|
|
#
|
|
|
|
# altered from _fink
|
|
|
|
|
|
|
|
_brew_all_formulae() {
|
|
|
|
formulae=(`brew search`)
|
|
|
|
}
|
|
|
|
|
|
|
|
_brew_installed_formulae() {
|
|
|
|
installed_formulae=(`brew list`)
|
|
|
|
}
|
|
|
|
|
2013-07-08 13:25:20 +02:00
|
|
|
_brew_installed_taps() {
|
|
|
|
installed_taps=(`brew tap`)
|
|
|
|
}
|
|
|
|
|
2011-09-29 14:35:16 +09:00
|
|
|
_brew_outdated_formulae() {
|
|
|
|
outdated_formulae=(`brew outdated`)
|
|
|
|
}
|
|
|
|
|
2014-01-22 16:36:33 -05:00
|
|
|
_brew_running_services() {
|
|
|
|
running_services=(`brew services list | awk '{print $1}'`)
|
|
|
|
}
|
|
|
|
|
2009-10-26 10:54:32 -04:00
|
|
|
local -a _1st_arguments
|
|
|
|
_1st_arguments=(
|
2013-09-05 10:19:23 -04:00
|
|
|
'audit:check formulae for Homebrew coding style'
|
2013-12-08 16:27:45 +01:00
|
|
|
'bundle:look for a Brewfile and run each line as a brew command'
|
2010-04-28 22:28:33 +02:00
|
|
|
'cat:display formula file for a formula'
|
|
|
|
'cleanup:uninstall unused and old versions of packages'
|
2013-09-14 16:58:26 -07:00
|
|
|
'commands:show a list of commands'
|
2014-05-01 13:04:26 +08:00
|
|
|
'config:show homebrew and system configuration'
|
2010-04-28 22:28:33 +02:00
|
|
|
'create:create a new formula'
|
|
|
|
'deps:list dependencies and dependants of a formula'
|
|
|
|
'doctor:audits your installation for common issues'
|
|
|
|
'edit:edit a formula'
|
|
|
|
'home:visit the homepage of a formula or the brew project'
|
|
|
|
'info:information about a formula'
|
2009-10-26 10:54:32 -04:00
|
|
|
'install:install a formula'
|
2013-08-22 10:14:56 -04:00
|
|
|
'reinstall:install a formula anew; re-using its current options'
|
2010-04-28 22:28:33 +02:00
|
|
|
'link:link a formula'
|
|
|
|
'list:list files in a formula or not-installed formulae'
|
|
|
|
'log:git commit log for a formula'
|
2010-12-20 10:07:03 -08:00
|
|
|
'missing:check all installed formuale for missing dependencies.'
|
2013-01-26 13:16:55 +00:00
|
|
|
'outdated:list formulae for which a newer version is available'
|
2013-03-11 16:41:08 +01:00
|
|
|
'pin:pin specified formulae'
|
2010-04-28 22:28:33 +02:00
|
|
|
'prune:remove dead links'
|
2009-10-26 10:54:32 -04:00
|
|
|
'remove:remove a formula'
|
|
|
|
'search:search for a formula (/regex/ or string)'
|
2010-12-20 10:07:03 -08:00
|
|
|
'server:start a local web app that lets you browse formulae (requires Sinatra)'
|
2014-01-22 16:36:33 -05:00
|
|
|
'services:small wrapper around `launchctl` for supported formulae'
|
2014-03-29 13:11:22 +01:00
|
|
|
'switch:switch between different versions of a formula'
|
2013-06-21 19:36:34 -07:00
|
|
|
'tap:tap a new formula repository from GitHub, or list existing taps'
|
2009-10-26 10:54:32 -04:00
|
|
|
'unlink:unlink a formula'
|
2013-03-11 16:41:08 +01:00
|
|
|
'unpin:unpin specified formulae'
|
2013-06-21 19:36:34 -07:00
|
|
|
'untap:remove a tapped repository'
|
2009-10-26 10:54:32 -04:00
|
|
|
'update:freshen up links'
|
2011-09-29 14:35:16 +09:00
|
|
|
'upgrade:upgrade outdated formulae'
|
2013-01-26 13:16:55 +00:00
|
|
|
'uses:show formulae which depend on a formula'
|
2009-10-26 10:54:32 -04:00
|
|
|
)
|
|
|
|
|
2014-01-22 16:36:33 -05:00
|
|
|
local -a _service_arguments
|
|
|
|
_service_arguments=(
|
|
|
|
'cleanup:get rid of stale services and unused plists'
|
|
|
|
'list:list all services managed by `brew services`'
|
|
|
|
'restart:gracefully restart selected service'
|
|
|
|
'start:start selected service'
|
|
|
|
'stop:stop selected service'
|
|
|
|
)
|
|
|
|
|
2009-10-26 10:54:32 -04:00
|
|
|
local expl
|
2014-01-22 16:36:33 -05:00
|
|
|
local -a formulae installed_formulae installed_taps outdated_formulae running_services
|
2009-10-26 10:54:32 -04:00
|
|
|
|
|
|
|
_arguments \
|
2011-02-08 21:04:54 -05:00
|
|
|
'(-v)-v[verbose]' \
|
|
|
|
'(--cellar)--cellar[brew cellar]' \
|
|
|
|
'(--env)--env[brew environment]' \
|
|
|
|
'(--repository)--repository[brew repository]' \
|
2009-10-26 10:54:32 -04:00
|
|
|
'(--version)--version[version information]' \
|
|
|
|
'(--prefix)--prefix[where brew lives on this system]' \
|
|
|
|
'(--cache)--cache[brew cache]' \
|
|
|
|
'*:: :->subcmds' && return 0
|
|
|
|
|
|
|
|
if (( CURRENT == 1 )); then
|
|
|
|
_describe -t commands "brew subcommand" _1st_arguments
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
case "$words[1]" in
|
2014-03-29 13:11:22 +01:00
|
|
|
install|reinstall|audit|home|homepage|log|info|abv|uses|cat|deps|edit|options|switch)
|
2014-01-22 16:36:33 -05:00
|
|
|
_brew_all_formulae
|
|
|
|
_wanted formulae expl 'all formulae' compadd -a formulae ;;
|
2011-02-08 21:04:54 -05:00
|
|
|
list|ls)
|
2009-10-26 10:54:32 -04:00
|
|
|
_arguments \
|
|
|
|
'(--unbrewed)--unbrewed[files in brew --prefix not controlled by brew]' \
|
2013-03-11 16:41:08 +01:00
|
|
|
'(--pinned)--pinned[list all versions of pinned formulae]' \
|
2010-09-25 21:17:05 +01:00
|
|
|
'(--versions)--versions[list all installed versions of a formula]' \
|
2014-01-22 16:36:33 -05:00
|
|
|
'1: :->forms' && return 0
|
2010-04-28 22:28:33 +02:00
|
|
|
|
2009-10-26 10:54:32 -04:00
|
|
|
if [[ "$state" == forms ]]; then
|
|
|
|
_brew_installed_formulae
|
2010-09-25 21:17:05 +01:00
|
|
|
_wanted installed_formulae expl 'installed formulae' compadd -a installed_formulae
|
2009-10-26 10:54:32 -04:00
|
|
|
fi ;;
|
2013-03-11 16:41:08 +01:00
|
|
|
remove|rm|uninstall|unlink|cleanup|link|ln|pin|unpin)
|
2009-10-26 10:54:32 -04:00
|
|
|
_brew_installed_formulae
|
|
|
|
_wanted installed_formulae expl 'installed formulae' compadd -a installed_formulae ;;
|
2014-01-22 16:36:33 -05:00
|
|
|
search|-S)
|
|
|
|
_arguments \
|
|
|
|
'(--macports)--macports[search the macports repository]' \
|
|
|
|
'(--fink)--fink[search the fink repository]' ;;
|
|
|
|
services)
|
|
|
|
if [[ -n "$words[2]" ]]; then
|
|
|
|
case "$words[2]" in
|
|
|
|
restart|start|stop)
|
|
|
|
_brew_running_services
|
|
|
|
_wanted running_services expl 'running services' compadd -a running_services ;;
|
|
|
|
esac
|
|
|
|
else
|
|
|
|
_describe -t commands "brew services subcommand" _service_arguments
|
|
|
|
fi ;;
|
2013-07-08 13:25:20 +02:00
|
|
|
untap)
|
|
|
|
_brew_installed_taps
|
2014-06-04 16:04:16 -05:00
|
|
|
_wanted installed_taps expl 'installed taps' compadd -a installed_taps ;;
|
2014-01-22 16:36:33 -05:00
|
|
|
upgrade)
|
|
|
|
_brew_outdated_formulae
|
|
|
|
_wanted outdated_formulae expl 'outdated formulae' compadd -a outdated_formulae ;;
|
2009-10-26 10:54:32 -04:00
|
|
|
esac
|