[#126] Autoload only desired module functions

Fix a globbing bug introduced in 6233ec6.
This commit is contained in:
Sorin Ionescu 2012-04-11 11:08:38 -04:00
parent 64da1ed627
commit d3c6771c27

View File

@ -36,7 +36,7 @@ function omodload {
fpath=(${argv:+${OMZ}/modules/${^argv}/functions(/FN)} $fpath)
# Load Oh My Zsh functions.
for ofunction in $OMZ/modules/**/functions/^([_.]*|prompt_*_setup)(.N:t); do
for ofunction in $OMZ/modules/${^argv}/functions/^([_.]*|prompt_*_setup)(.N:t); do
autoload -Uz "$ofunction"
done
unset ofunction