From b0a094cbf7ec67827125d4874815344839282200 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Wed, 26 Apr 2023 11:50:41 -0500 Subject: [PATCH] don't throw unneeded error in zshplugin --- .../zsh/plugins/zexists/zexists.plugin.zsh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/home/private_dot_config/zsh/plugins/zexists/zexists.plugin.zsh b/home/private_dot_config/zsh/plugins/zexists/zexists.plugin.zsh index 69ce795..0e6ee15 100644 --- a/home/private_dot_config/zsh/plugins/zexists/zexists.plugin.zsh +++ b/home/private_dot_config/zsh/plugins/zexists/zexists.plugin.zsh @@ -43,7 +43,6 @@ function zshdir-encode { echo dir${${1//${HOME}\//}//\//-SLASH-} } - function source-zshpathd { setopt extended_glob @@ -99,5 +98,5 @@ function source-zshpathd { } -source-zshcmdd || echo >&2 'issues loading zexists.d/cmd' -source-zshpathd || echo >&2 'issues loading zexists.d/path' +source-zshcmdd +source-zshpathd