* feat(cli): move command to the end of the cli arguments * feat(cli): allow naming panes from the command line * fix(cli): adjust actions after pane rename * feat(cli): zellij run completions for fish * feat(cli): zellij run completions for bash and zsh * style(fmt): rustfmt * fix(e2e): fix run test and snapshot * style(fmt): rustfmt
4 lines
284 B
Bash
4 lines
284 B
Bash
function zp () { zellij run --name "$*" -- zsh -c "$*";} # zellij pane
|
|
function zpf () { zellij run --name "$*" --floating -- zsh -c "$*";} # zellij pane floating
|
|
function zo () { zellij edit "$*";} # zellij open
|
|
function zof () { zellij edit --floating "$*";} # zellij open floating
|