kakoune/rc/client.kak

14 lines
400 B
Plaintext
Raw Normal View History

decl str termcmd %sh{
if [[ -n "$TMUX" ]]; then
echo "'tmux split-window -h'"
else
echo "'urxvt -e sh -c'"
fi
}
2014-02-19 04:45:41 +01:00
def new -docstring 'create a new kak client for current session' \
-shell-params %{ nop %sh{
if (( $# != 0 )); then kakoune_params="-e '$@'"; fi
setsid ${kak_opt_termcmd} "kak -c ${kak_session} ${kakoune_params}" < /dev/null >& /dev/null &
}}