2012-02-01 04:37:51 +00:00
|
|
|
#
|
|
|
|
# Displays installation information for not found commands.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Joseph Jon Booker <joe@neoturbine.net>
|
2016-08-04 20:57:16 +00:00
|
|
|
# Indrajit Raychaudhuri <irc+code@indrajit.com>
|
2012-02-01 04:37:51 +00:00
|
|
|
#
|
2011-08-31 03:16:15 +00:00
|
|
|
|
2013-10-01 14:06:57 +00:00
|
|
|
# Load command-not-found on Debian-based distributions.
|
|
|
|
if [[ -s '/etc/zsh_command_not_found' ]]; then
|
|
|
|
source '/etc/zsh_command_not_found'
|
|
|
|
# Load command-not-found on Arch Linux-based distributions.
|
|
|
|
elif [[ -s '/usr/share/doc/pkgfile/command-not-found.zsh' ]]; then
|
|
|
|
source '/usr/share/doc/pkgfile/command-not-found.zsh'
|
2018-08-01 01:29:01 +00:00
|
|
|
# Load command-not-found on macOS when Homebrew tap is configured.
|
|
|
|
# To avoid performance penalty, we do not use Homebrew's ruby based command
|
|
|
|
# lookup mechanism (viz., `brew command command-not-found-init`) and instead
|
|
|
|
# `find` it ourselves from `TAP_DIRECTORY` defined internally in Homebrew.
|
|
|
|
elif (( $+commands[brew] )); then
|
2018-12-15 02:57:10 +00:00
|
|
|
cnf_command=(
|
|
|
|
"$(brew --repository 2> /dev/null)"/Library/Taps/*/*/cmd/brew-command-not-found-init(|.rb)(.N)
|
|
|
|
)
|
2018-12-11 17:02:37 +00:00
|
|
|
if (( $#cnf_command )); then
|
2018-08-01 01:29:01 +00:00
|
|
|
cache_file="${TMPDIR:-/tmp}/prezto-brew-command-not-found-cache.$UID.zsh"
|
|
|
|
|
2018-12-11 17:02:37 +00:00
|
|
|
if [[ "${${(@o)cnf_command}[1]}" -nt "$cache_file" \
|
2018-08-01 01:29:01 +00:00
|
|
|
|| "${ZDOTDIR:-$HOME}/.zpreztorc" -nt "$cache_file" \
|
|
|
|
|| ! -s "$cache_file" ]]; then
|
|
|
|
# brew command-not-found-init is slow; cache its output.
|
|
|
|
brew command-not-found-init >! "$cache_file" 2> /dev/null
|
|
|
|
fi
|
|
|
|
|
|
|
|
source "$cache_file"
|
|
|
|
|
|
|
|
unset cache_file
|
|
|
|
fi
|
|
|
|
|
|
|
|
unset cnf_command
|
2012-07-23 19:00:44 +00:00
|
|
|
# Return if requirements are not found.
|
2013-10-01 14:06:57 +00:00
|
|
|
else
|
2012-07-23 19:00:44 +00:00
|
|
|
return 1
|
2011-08-31 03:16:15 +00:00
|
|
|
fi
|