1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 14:40:27 +00:00
prezto/modules/command-not-found/init.zsh

22 lines
754 B
Bash
Raw Normal View History

2012-02-01 04:37:51 +00:00
#
# Displays installation information for not found commands.
#
# Authors:
# Joseph Jon Booker <joe@neoturbine.net>
# Indrajit Raychaudhuri <irc+code@indrajit.com>
2012-02-01 04:37:51 +00:00
#
2011-08-31 03:16:15 +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'
# Load command-not-found on Mac OS X when homebrew tap is configured.
elif (( $+commands[brew] )) && brew command command-not-found-init > /dev/null 2>&1; then
eval "$(brew command-not-found-init)"
2012-07-23 19:00:44 +00:00
# Return if requirements are not found.
else
2012-07-23 19:00:44 +00:00
return 1
2011-08-31 03:16:15 +00:00
fi