2012-07-18 23:20:30 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class ZshCompletions < Formula
|
|
|
|
homepage 'https://github.com/zsh-users/zsh-completions'
|
2013-02-08 15:33:51 +00:00
|
|
|
url 'https://github.com/zsh-users/zsh-completions/tarball/0.8.0'
|
|
|
|
sha1 '9dd4923aab739077640a340ba9f9f2afd7f0a206'
|
2012-09-20 09:46:14 +00:00
|
|
|
|
|
|
|
head 'https://github.com/zsh-users/zsh-completions.git'
|
2012-07-18 23:20:30 +00:00
|
|
|
|
|
|
|
def install
|
2012-09-20 09:46:14 +00:00
|
|
|
(share/'zsh-completions').install Dir['src/_*']
|
2012-07-18 23:20:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def caveats
|
|
|
|
<<-EOS.undent
|
|
|
|
To activate these completions, add the following to your .zshrc:
|
|
|
|
|
|
|
|
fpath=(#{HOMEBREW_PREFIX}/share/zsh-completions $fpath)
|
|
|
|
|
|
|
|
You may also need to force rebuild `zcompdump`:
|
|
|
|
|
|
|
|
rm -f ~/.zcompdump; compinit
|
|
|
|
|
|
|
|
Additionally, if you receive "zsh compinit: insecure directories" warnings when attempting
|
|
|
|
to load these completions, you may need to run this:
|
|
|
|
|
|
|
|
chmod go-w /usr/local/share
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|