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