_brew 5.75 KB
Newer Older
1
2
3
#compdef brew
#autoload

Glenn / devalias's avatar
Glenn / devalias committed
4
# imported from https://github.com/Homebrew/homebrew/blob/29f73d2212c2b202fe25f69dcbf440d8391fa4c9/Library/Contributions/brew_zsh_completion.zsh
5
6
7
8
9
10

# Brew ZSH completion function
# Drop this somewhere in your $fpath (like /usr/share/zsh/site-functions)
# and rename it _brew
#
# altered from _fink
11
12
13
14
15
16
17
18
19

_brew_all_formulae() {
  formulae=(`brew search`)
}

_brew_installed_formulae() {
  installed_formulae=(`brew list`)
}

20
21
22
23
_brew_installed_taps() {
  installed_taps=(`brew tap`)
}

24
25
26
27
28
29
30
31
_brew_official_taps() {
  official_taps=(`brew tap --list-official`)
}

_brew_pinned_taps() {
  pinned_taps=(`brew tap --list-pinned`)
}

32
33
34
35
_brew_outdated_formulae() {
  outdated_formulae=(`brew outdated`)
}

36
37
38
39
_brew_installed_services() {
  installed_services=(`brew services list | awk '{print $1}' | tail -n+2`)
}

40
41
local -a _1st_arguments
_1st_arguments=(
42
  'audit:check formulae for Homebrew coding style'
43
44
  'cat:display formula file for a formula'
  'cleanup:uninstall unused and old versions of packages'
45
  'commands:show a list of commands'
46
  'config:show homebrew and system configuration'
47
  'create:create a new formula'
48
49
  'deps:list dependencies and dependants of a formula'
  'desc:display a description of a formula'
50
51
  'doctor:audits your installation for common issues'
  'edit:edit a formula'
52
53
  'fetch:download formula resources to the cache'
  'gist-logs:generate a gist of the full build logs'
54
55
56
  'home:visit the homepage of a formula or the brew project'
  'info:information about a formula'
  'install:install a formula'
57
  'reinstall:install a formula anew; re-using its current options'
58
  'leaves:show installed formulae that are not dependencies of another installed formula'
59
  'link:link a formula'
60
  'linkapps:symlink .app bundles provided by formulae into /Applications'
61
62
  'list:list files in a formula or not-installed formulae'
  'log:git commit log for a formula'
Andrew Hodges's avatar
Andrew Hodges committed
63
  'missing:check all installed formuale for missing dependencies.'
64
  'migrate:migrate renamed formula to new name'
65
66
  'outdated:list formulae for which a newer version is available'
  'pin:pin specified formulae'
67
  'postinstall:perform post_install for a given formula'
68
69
70
  'prune:remove dead links'
  'remove:remove a formula'
  'search:search for a formula (/regex/ or string)'
71
  'services:manage services'
72
  'switch:switch between different versions of a formula'
73
  'tap:tap a new formula repository from GitHub, or list existing taps'
74
75
76
  'tap-info:information about a tap'
  'tap-pin:pin a tap'
  'tap-unpin:unpin a tap'
77
  'test-bot:test a formula and build a bottle'
78
  'uninstall:uninstall a formula'
79
  'unlink:unlink a formula'
80
  'unlinkapps:remove symlinked .app bundles provided by formulae from /Applications'
81
82
  'unpin:unpin specified formulae'
  'untap:remove a tapped repository'
83
  'update:fetch latest version of Homebrew and all formulae'
84
  'upgrade:upgrade outdated formulae'
85
  'uses:show formulae which depend on a formula'
86
  `brew commands --quiet --include-aliases`
87
88
)

89
local expl
90
local -a formulae installed_formulae installed_taps official_taps outdated_formulae installed_services
91
92

_arguments \
Andrew Hodges's avatar
Andrew Hodges committed
93
94
95
96
  '(-v)-v[verbose]' \
  '(--cellar)--cellar[brew cellar]' \
  '(--env)--env[brew environment]' \
  '(--repository)--repository[brew repository]' \
97
98
99
100
101
102
103
104
105
106
107
  '(--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
108
  install|reinstall|audit|home|homepage|log|info|abv|uses|cat|deps|desc|edit|options|switch)
109
110
    _brew_all_formulae
    _wanted formulae expl 'all formulae' compadd -a formulae ;;
111
112
113
114
115
116
117
118
119
  linkapps|unlinkapps)
    _arguments \
      '(--local)--local[operate on ~/Applications instead of /Applications]' \
      '1: :->forms' && return 0

    if [[ "$state" == forms ]]; then
      _brew_installed_formulae
      _wanted installed_formulae expl 'installed formulae' compadd -a installed_formulae
    fi ;;
Andrew Hodges's avatar
Andrew Hodges committed
120
  list|ls)
121
122
    _arguments \
      '(--unbrewed)--unbrewed[files in brew --prefix not controlled by brew]' \
123
      '(--pinned)--pinned[list all versions of pinned formulae]' \
Andrew Hodges's avatar
Andrew Hodges committed
124
      '(--versions)--versions[list all installed versions of a formula]' \
125
      '1: :->forms' && return 0
126
127
128

      if [[ "$state" == forms ]]; then
        _brew_installed_formulae
Andrew Hodges's avatar
Andrew Hodges committed
129
        _wanted installed_formulae expl 'installed formulae' compadd -a installed_formulae
130
      fi ;;
131
  remove|rm|uninstall|unlink|cleanup|link|ln|pin|unpin)
132
133
    _brew_installed_formulae
    _wanted installed_formulae expl 'installed formulae' compadd -a installed_formulae ;;
134
135
136
137
  search|-S)
    _arguments \
      '(--macports)--macports[search the macports repository]' \
      '(--fink)--fink[search the fink repository]' ;;
138
  untap|tap-info|tap-pin)
139
    _brew_installed_taps
140
141
142
143
144
145
146
    _wanted installed_taps expl 'installed taps' compadd -a installed_taps ;;
  tap)
    _brew_official_taps
    _wanted official_taps expl 'official taps' compadd -a official_taps ;;
  tap-unpin)
    _brew_pinned_taps
    _wanted pinned_taps expl 'pinned taps' compadd -a pinned_taps ;;
147
148
149
  upgrade)
    _brew_outdated_formulae
    _wanted outdated_formulae expl 'outdated formulae' compadd -a outdated_formulae ;;
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
  services)
     _arguments -C \
      '1: :->command' \
      '2: :->service' && return 0

    local -a commands

    commands=(
      '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'
    )

    case $state in
      command)
        _describe -t commands 'Action' commands
        ;;
      service)
        _brew_installed_services
       _describe -t subcommands 'Services' installed_services
       ;;
    esac
174
esac