summaryrefslogtreecommitdiffstats
path: root/zellij-utils/assets/completions/comp.zsh
blob: 67e9cb4f14267f3da9614bd559a2e857b6d4e180 (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
    zellij pipe;
  else 
    zellij pipe -p $1;
  fi
}