[zsh] Get the output redirection right for autoloads

This commit is contained in:
Eryn Wells 2022-05-20 15:12:14 +00:00
parent 1eb0f7ab8e
commit 0226d26f94
2 changed files with 5 additions and 4 deletions

2
zshenv
View file

@ -18,6 +18,6 @@ init_path
init_env
init_env_python
if autoload +X init_env_$SYS; then
if autoload +X init_env_$SYS &>-; then
init_env_$SYS
fi