如何在Tmux中更改窗格的位置

时间:2012-10-17 10:46:40

标签: tmux

如标题中所述,我希望在窗格3退出后更改窗格的位置,例如我要将窗格4更改为窗格3。非常感谢。

2 个答案:

答案 0 :(得分:5)

在窗格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 cheatsheet

答案 1 :(得分:3)

最新版本的tmux(1.7)支持renumbering of windows

如果您只想将窗口4的数量更改为3,请在窗口4中执行此操作:

move-window -t 3