<ブロック引用>
Linux
@lyuboslav-kanev からコピー
prefix + ;
私にとって完璧に機能しました。
prefix + l
最後のウィンドウに切り替える
prefix + L
最後のセッションに切り替える
tmux マニュアル ($man tmux) には、次のセクションがあります:
select-pane [-DdeLlRU] [-t target-pane]
(alias: selectp)
Make pane target-pane the active pane in window target-window.
If one of -D, -L, -R, or -U is used, respectively the pane below,
to the left, to the right, or above the target pane is used. -l
is the same as using the last-pane command. -e enables or -d
disables input to the pane.
だから、あなたが望むのは、最後のペインに切り替えるための「-l」フラグを使用することだと思います。このタスクに定義されたデフォルトのキー マッピングがあるかどうかはわかりませんが、独自のバインドを行うことでこれを実現できます。このようなもの:
bind -r <your key> select-pane -l