rc repl tmux: always spawn repl in calling client
Just like the parent commit but for tmux-repl-* commands. Note that tmux-repl-set-pane without arguments is kind of broken; it increments the current pane ID, which only works in the most basic scenarios. We should probably replace it with something better, with menu completions etc.
This commit is contained in:
parent
cfea884cf2
commit
f69d8c3e12
|
@ -17,9 +17,15 @@ define-command -hidden -params 1.. tmux-repl-impl %{
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
tmux_args="$1"
|
tmux_args="$1"
|
||||||
|
if [ "${1%%-*}" = split ]; then
|
||||||
|
tmux_args="$tmux_args -t ${kak_client_env_TMUX_PANE}"
|
||||||
|
elif [ "${1%% *}" = new-window ]; then
|
||||||
|
session_id=$(tmux display-message -p -t ${kak_client_env_TMUX_PANE} '#{session_id}')
|
||||||
|
tmux_args="$tmux_args -t $session_id"
|
||||||
|
fi
|
||||||
shift
|
shift
|
||||||
tmux $tmux_args "$@"
|
repl_pane_id=$(tmux $tmux_args -P -F '#{pane_id}' "$@")
|
||||||
printf "set-option current tmux_repl_id '%s'" $(tmux display-message -p '#{pane_id}')
|
printf "set-option current tmux_repl_id '%s'" "$repl_pane_id"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -50,13 +56,12 @@ define-command -params 0..1 tmux-repl-set-pane -docstring %{
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
if [ $# -eq 0 ]; then
|
if [ $# -eq 0 ]; then
|
||||||
curr_pane="$(tmux display-message -p '#{pane_id}')"
|
curr_pane_no="${kak_client_env_TMUX_PANE#%}"
|
||||||
curr_pane_no="${curr_pane#%}"
|
|
||||||
tgt_pane=$((curr_pane_no+1))
|
tgt_pane=$((curr_pane_no+1))
|
||||||
else
|
else
|
||||||
tgt_pane="$1"
|
tgt_pane="$1"
|
||||||
fi
|
fi
|
||||||
curr_win="$(tmux display-message -p '#{window_id}')"
|
curr_win="$(tmux display-message -t ${kak_client_env_TMUX_PANE} -p '#{window_id}')"
|
||||||
if tmux list-panes -t "$curr_win" -F \#D | grep -Fxq "%"$tgt_pane; then
|
if tmux list-panes -t "$curr_win" -F \#D | grep -Fxq "%"$tgt_pane; then
|
||||||
printf "set-option current tmux_repl_id '%s'" %$tgt_pane
|
printf "set-option current tmux_repl_id '%s'" %$tgt_pane
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue
Block a user