tmux.kak: use TMUX_PANE for tmux-terminal-{horizontal,vertical}
In case a user connects to the same Kakoune session from multiple tmux windows/sessions, this makes the splits appear next to the calling client, instead the client where the Kakoune session was started.
This commit is contained in:
parent
c2516f02f6
commit
0fb99f217a
|
@ -16,6 +16,9 @@ define-command -hidden -params 2.. tmux-terminal-impl %{
|
|||
exit
|
||||
fi
|
||||
tmux_args="$1"
|
||||
if [ "${1%%-*}" = split ]; then
|
||||
tmux_args="$tmux_args -t ${kak_client_env_TMUX_PANE}"
|
||||
fi
|
||||
shift
|
||||
# ideally we should escape single ';' to stop tmux from interpreting it as a new command
|
||||
# but that's probably too rare to care
|
||||
|
|
Loading…
Reference in New Issue
Block a user