summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2024-03-20 18:36:19 +0100
committerGitHub <noreply@github.com>2024-03-20 18:36:19 +0100
commitc8b210cc6762f1238f7d3a075f93dc533b64d568 (patch)
tree35bd3f04585d2bc6988fa92d960f86d0873b3743
parentec6d627b06dac2aaf94b1e2f8e55b889986bcc08 (diff)
HOTFIX: remove debug path
-rw-r--r--zellij-utils/assets/completions/comp.zsh4
1 files changed, 2 insertions, 2 deletions
diff --git a/zellij-utils/assets/completions/comp.zsh b/zellij-utils/assets/completions/comp.zsh
index 48c51d16a..67e9cb4f1 100644
--- a/zellij-utils/assets/completions/comp.zsh
+++ b/zellij-utils/assets/completions/comp.zsh
@@ -4,8 +4,8 @@ function ze () { zellij edit "$*";}
function zef () { zellij edit --floating "$*";}
function zpipe () {
if [ -z "$1" ]; then
- /home/aram/code/zellij/target/dev-opt/zellij pipe;
+ zellij pipe;
else
- /home/aram/code/zellij/target/dev-opt/zellij pipe -p $1;
+ zellij pipe -p $1;
fi
}