Print an error when a plugin is not found.

This commit is contained in:
Sorin Ionescu 2011-12-29 23:19:16 -05:00
parent 30f8aef2a1
commit 5bb9a3e4b5
1 changed files with 5 additions and 0 deletions

View File

@ -48,6 +48,11 @@ autoload -Uz zmv
# Source plugins defined in ~/.zshrc.
for plugin in "$plugins[@]"; do
zstyle ":omz:plugin:$plugin" enable 'yes'
if [[ ! -d "${0:h}/plugins/$plugin" ]]; then
print "omz: no such plugin: $plugin" >&2
fi
if [[ -f "${0:h}/plugins/$plugin/init.zsh" ]]; then
source "${0:h}/plugins/$plugin/init.zsh"
fi