From 18af1fb0f4cdf6c56c24455abb359883c231e119 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Sun, 22 May 2022 08:42:16 -0700 Subject: [PATCH] zsh: true rather than echo -n --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 2655ce2..c5b5abd 100644 --- a/.zshrc +++ b/.zshrc @@ -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)