zellij/zellij-utils/assets/completions/comp.zsh
Aram Drevekenin ec6d627b06
chore(integrations): zpipe alias (#3210)
* chore(completions): zpipe alias

* chore(integrations): zpipe alias
2024-03-20 18:34:50 +01:00

11 lines
387 B
Bash

function zr () { zellij run --name "$*" -- zsh -ic "$*";}
function zrf () { zellij run --name "$*" --floating -- zsh -ic "$*";}
function ze () { zellij edit "$*";}
function zef () { zellij edit --floating "$*";}
function zpipe () {
if [ -z "$1" ]; then
/home/aram/code/zellij/target/dev-opt/zellij pipe;
else
/home/aram/code/zellij/target/dev-opt/zellij pipe -p $1;
fi
}