[zsh] Remove all the ShellLog calls -- just too slow :(

This commit is contained in:
Eryn Wells 2022-01-22 09:39:51 -08:00
parent a13ecc9e4d
commit 1c80ab1de4
16 changed files with 0 additions and 38 deletions

View file

@ -7,7 +7,6 @@ function init_zsh_functions
{
local myfpath="$HOME/.zsh/func"
ShellLog "Loading functions in $myfpath"
for func in $myfpath/*; do
[[ ! -e "$func" || -d "$func" ]] && continue
@ -15,7 +14,6 @@ function init_zsh_functions
[[ "$functionName" =~ "prompt_*" ]] && continue
[[ "$functionName" =~ "init_*" ]] && continue
ShellLog -l debug "Loading $functionName"
autoload +X $functionName
done