mirror of
https://github.com/mawww/kakoune.git
synced 2024-11-09 20:39:59 +03:00
14 lines
401 B
Plaintext
14 lines
401 B
Plaintext
decl str termcmd %sh{
|
|
if [ -n "$TMUX" ]; then
|
|
echo "'tmux split-window -h'"
|
|
else
|
|
echo "'urxvt -e sh -c'"
|
|
fi
|
|
}
|
|
|
|
def new -docstring 'create a new kak client for current session' \
|
|
-shell-params %{ nop %sh{
|
|
if [ $# -ne 0 ]; then kakoune_params="-e '$@'"; fi
|
|
setsid ${kak_opt_termcmd} "kak -c ${kak_session} ${kakoune_params}" < /dev/null > /dev/null 2>&1 &
|
|
}}
|