From 307637b26efe817f0cc7ef1deef1e6990010a9a4 Mon Sep 17 00:00:00 2001 From: David Dworken Date: Tue, 6 Feb 2024 22:04:55 -0800 Subject: [PATCH] Properly silence which output to fix #166 --- client/lib/config.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/lib/config.zsh b/client/lib/config.zsh index c203f1c..47536d4 100644 --- a/client/lib/config.zsh +++ b/client/lib/config.zsh @@ -52,4 +52,4 @@ if [ -n "${HISHTORY_TEST:-}" ]; then compinit fi -source <(hishtory completion zsh); which compdef 2>&1 >/dev/null && compdef _hishtory hishtory \ No newline at end of file +source <(hishtory completion zsh); which compdef >/dev/null 2>&1 && compdef _hishtory hishtory \ No newline at end of file