aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/zsh-completions.rb
blob: 530983e0b0204e85dc9225b3a1cf97c5bd18da71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
require 'formula'

class ZshCompletions < Formula
  homepage 'https://github.com/zsh-users/zsh-completions'
  url 'https://github.com/zsh-users/zsh-completions/archive/0.10.0.tar.gz'
  sha1 '7ca9101a72d688e6127d0c1839941bff5e3cf0ca'

  head 'https://github.com/zsh-users/zsh-completions.git'

  def install
    (share/'zsh-completions').install Dir['src/_*']
  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