summaryrefslogtreecommitdiffstats
path: root/zellij-utils/assets/completions/comp.zsh
blob: 48c51d16a7f7bd2bfa65c1ea397a0dd40f88b690 (plain)
1
2
3
4
5
6
7
8
9
10
11
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
}