From c8b210cc6762f1238f7d3a075f93dc533b64d568 Mon Sep 17 00:00:00 2001 From: Aram Drevekenin Date: Wed, 20 Mar 2024 18:36:19 +0100 Subject: [PATCH] HOTFIX: remove debug path --- zellij-utils/assets/completions/comp.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zellij-utils/assets/completions/comp.zsh b/zellij-utils/assets/completions/comp.zsh index 48c51d16..67e9cb4f 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 }