summaryrefslogtreecommitdiffstats
path: root/zellij-utils/assets/completions/comp.bash
blob: ae069132c2c928aa302a1555b2f801781b26c682 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
function zr () { zellij run --name "$*" -- bash -ic "$*";}
function zrf () { zellij run --name "$*" --floating -- bash -ic "$*";}
function zri () { zellij run --name "$*" --in-place -- bash -ic "$*";}
function ze () { zellij edit "$*";}
function zef () { zellij edit --floating "$*";}
function zei () { zellij edit --in-place "$*";}
function zpipe () { 
  if [ -z "$1" ]; then
    zellij pipe;
  else 
    zellij pipe -p $1;
  fi
}