zsh: true rather than echo -n

This commit is contained in:
PowerUser64 2022-05-22 08:42:16 -07:00
parent e2d2a29146
commit 18af1fb0f4

2
.zshrc
View file

@ -217,7 +217,7 @@ autoload -U add-zsh-hook
add-zsh-hook chpwd save_working_dir
# shellchek disable=SC2164
load_working_dir && cd - > /dev/null || echo -n
load_working_dir && cd - > /dev/null || true
# Case insensitive globbing (fix for termux)
[ -n "$TERMUX_VERSION" ] && (setopt nocaseglob; zstyle ':completion:*' path-completion true)