[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
|
@ -7,7 +7,7 @@ function init_zsh_functions
|
|||
{
|
||||
local myfpath="$HOME/.zsh/func"
|
||||
|
||||
shell-log "Loading functions in $myfpath"
|
||||
ShellLog "Loading functions in $myfpath"
|
||||
for func in $myfpath/*; do
|
||||
[[ ! -e "$func" || -d "$func" ]] && continue
|
||||
|
||||
|
@ -15,7 +15,7 @@ function init_zsh_functions
|
|||
[[ "$functionName" =~ "prompt_*" ]] && continue
|
||||
[[ "$functionName" =~ "init_*" ]] && continue
|
||||
|
||||
shell-log -l debug "Loading $functionName"
|
||||
ShellLog -l debug "Loading $functionName"
|
||||
autoload +X $functionName
|
||||
done
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue