summaryrefslogtreecommitdiff
path: root/plugins/brew
diff options
context:
space:
mode:
authorTuowen Zhao <ztuowen@gmail.com>2016-10-29 19:14:13 -0600
committerTuowen Zhao <ztuowen@gmail.com>2016-10-29 19:14:13 -0600
commitc24de867a4d036af486fdaa77b0fcccb148e2b98 (patch)
tree040e3e553c884b06f093af5ca9476c1a1edfed77 /plugins/brew
parenta16fe1511ccf698432b7bbaccf250a7739ed2a92 (diff)
parent0ee89d965ecaa4f32cf2d1039e9d84a73eb206cf (diff)
downloadzsh-c24de867a4d036af486fdaa77b0fcccb148e2b98.tar.gz
zsh-c24de867a4d036af486fdaa77b0fcccb148e2b98.tar.bz2
zsh-c24de867a4d036af486fdaa77b0fcccb148e2b98.zip
Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
Diffstat (limited to 'plugins/brew')
-rw-r--r--plugins/brew/brew.plugin.zsh16
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/brew/brew.plugin.zsh b/plugins/brew/brew.plugin.zsh
index 5b5847328..d4289c98e 100644
--- a/plugins/brew/brew.plugin.zsh
+++ b/plugins/brew/brew.plugin.zsh
@@ -2,3 +2,19 @@ alias brews='brew list -1'
alias bubo='brew update && brew outdated'
alias bubc='brew upgrade && brew cleanup'
alias bubu='bubo && bubc'
+
+if mkdir "$ZSH_CACHE_DIR/.brew-completion-message" 2>/dev/null; then
+ print -P '%F{yellow}'Oh My Zsh brew plugin:
+ cat <<-'EOF'
+
+ With the advent of their 1.0 release, Homebrew has decided to bundle
+ the zsh completion as part of the brew installation, so we no longer
+ ship it with the brew plugin; now it only has brew aliases.
+
+ If you find that brew completion no longer works, make sure you have
+ your Homebrew installation fully up to date.
+
+ You will only see this message once.
+ EOF
+ print -P '%f'
+fi