diff options
author | L.C. Karssen <lennart@karssen.org> | 2016-03-07 22:09:02 +0100 |
---|---|---|
committer | L.C. Karssen <lennart@karssen.org> | 2016-03-07 22:09:02 +0100 |
commit | cfac963772718723589bf7293be0a53f79511b24 (patch) | |
tree | 1c0f680591d81ecfaff8932d07f8131f4a6fd45c /plugins/command-not-found | |
parent | 0a47451a462284d20c633a7d6b3431a71bf65759 (diff) | |
parent | bd6dbd1d9b1fc8a523aaf588492eb3ed4113b49d (diff) | |
download | zsh-cfac963772718723589bf7293be0a53f79511b24.tar.gz zsh-cfac963772718723589bf7293be0a53f79511b24.tar.bz2 zsh-cfac963772718723589bf7293be0a53f79511b24.zip |
Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh
Diffstat (limited to 'plugins/command-not-found')
-rw-r--r-- | plugins/command-not-found/command-not-found.plugin.zsh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/command-not-found/command-not-found.plugin.zsh b/plugins/command-not-found/command-not-found.plugin.zsh index 797554a13..0e2f2133f 100644 --- a/plugins/command-not-found/command-not-found.plugin.zsh +++ b/plugins/command-not-found/command-not-found.plugin.zsh @@ -23,3 +23,11 @@ if [ -f /usr/libexec/pk-command-not-found ]; then return $retval } fi + +# OSX command-not-found support +# https://github.com/Homebrew/homebrew-command-not-found +if type brew &> /dev/null; then + if brew command command-not-found-init > /dev/null 2>&1; then + eval "$(brew command-not-found-init)"; + fi +fi |