mirror of
https://github.com/mawww/kakoune.git
synced 2024-11-24 07:53:41 +03:00
14 lines
342 B
Plaintext
14 lines
342 B
Plaintext
|
setg termcmd %sh{
|
||
|
if [[ -n "$TMUX" ]]; then
|
||
|
echo "'tmux split-window -h'"
|
||
|
else
|
||
|
echo "'urxvt -e sh -c'"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
def new -shell-params %{ nop %sh{
|
||
|
if (( $# != 0 )); then kakoune_params="-e '$@'"; fi
|
||
|
${kak_opt_termcmd} "kak -c ${kak_socket#/tmp/kak-} ${kakoune_params}" < /dev/null >& /dev/null &
|
||
|
disown
|
||
|
}}
|