[zsh] Convert all shell-log calls to ShellLog
This commit is contained in:
parent
0894a4957e
commit
a13ecc9e4d
17 changed files with 28 additions and 28 deletions
|
@ -13,15 +13,15 @@ function load_module
|
|||
done
|
||||
|
||||
if [[ -z "$modpath" ]]; then
|
||||
shell-log -l error "Couldn't find path to module: $mod"
|
||||
ShellLog -l error "Couldn't find path to module: $mod"
|
||||
return 1
|
||||
fi
|
||||
|
||||
fpath+=($modpath)
|
||||
|
||||
shell-log "Loading module: $mod"
|
||||
ShellLog "Loading module: $mod"
|
||||
for func in `ls $modpath`; do
|
||||
shell-log "Loading function: $func"
|
||||
ShellLog "Loading function: $func"
|
||||
autoload $func
|
||||
done
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue