ペイン 3 が終了した後、ペイン 4 をペイン 3 に変更したいなど、ペインの位置を変更したい。
質問する
11191 次
2 に答える
29
ペイン 3 の終了後にペイン 4 をペイン 3 に変更するには:
C-b { move the current pane to the previous position
ペインを移動するためのその他のショートカットを次に示します。
C-b } move the current pane to the next position
C-b C-o rotate window ‘up’ (i.e. move all panes)
C-b M-o rotate window ‘down’
C-b ! move the current pane into a new separate
window (‘break pane’)
C-b :move-pane -t :3.2
split window 3's pane 2 and move the current pane there
出典: tmux チートシート
于 2017-10-03T09:01:22.950 に答える
4
tmux の最新バージョン (1.7) は、ウィンドウの再番号付けをサポートしています。
ウィンドウ 4 の数を 3 に変更したいだけの場合は、ウィンドウ 4 でこれを行います。
move-window -t 3
于 2012-10-17T15:00:41.623 に答える