回答:
Homebrewは独自の補完を提供します。あなただけのファイルをリンクする必要があります$(brew --prefix)/Library/Contributions/brew_zsh_completion.zsh
に_brew
、あなたの中のどこか$fpath
。(開始時のコメントを参照してくださいhttps://github.com/Homebrew/homebrew/blob/master/Library/Contributions/brew_zsh_completion.zsh)
zsh-completions
_brew
そのファイルを支持して最近その完成を削除しました、https://github.com/zsh-users/zsh-completions/issues/305を参照してください。
更新2016-04-19:ある時点で(1)Homebrewはzsh完了の処理を再度更新しました。Homebrewを介してzshをインストールすると、「正常に動作する」はずです。ファイルはにインストールされ/usr/local/share/zsh/site-functions/_brew
ます。
zsh-completions
数式をインストールしてみてください。
$ brew info zsh-completions
zsh-completions: stable 0.10.0, HEAD
https://github.com/zsh-users/zsh-completions
Not installed
From: https://github.com/Homebrew/homebrew/commits/master/Library/Formula/zsh-completions.rb
==> Caveats
To activate these completions, add the following to your .zshrc:
fpath=(/usr/local/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
また、zshにはbashの補完機能との互換性があるようです。bash-completions
数式と組み合わせて試すことができます。
compinit -i
chmodではなく、「安全でないディレクトリ」の警告を解決する必要があります。
compaudit
、アクセス許可を変更するディレクトリを決定するために使用します
$fpath
あり、それ$FPATH
に対応する場合はZsh
、このQ&Aが参考になります。