diff options
author | Marc Cornellà <marc.cornella@live.com> | 2016-10-25 07:17:29 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2016-10-25 07:17:29 +0200 |
commit | 0ee89d965ecaa4f32cf2d1039e9d84a73eb206cf (patch) | |
tree | 0b24762cbe1fe963156dcd004dda93651cccd15f /plugins | |
parent | d9695a8b00c6960417726e49a32df4cf760e055e (diff) | |
download | zsh-0ee89d965ecaa4f32cf2d1039e9d84a73eb206cf.tar.gz zsh-0ee89d965ecaa4f32cf2d1039e9d84a73eb206cf.tar.bz2 zsh-0ee89d965ecaa4f32cf2d1039e9d84a73eb206cf.zip |
Add brew completion missing disclaimer
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/brew/brew.plugin.zsh | 16 |
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 |