1
如標題所述,我想更改窗格的位置,例如我想在窗格3退出後將窗格4更改爲窗格3。非常感謝。如何更改Tmux中窗格的位置
如標題所述,我想更改窗格的位置,例如我想在窗格3退出後將窗格4更改爲窗格3。非常感謝。如何更改Tmux中窗格的位置
要窗格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
太棒了!它的作品,非常感謝! – fLOyd