2012-10-17 73 views

回答

3

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

如果你只是想窗口4的數量更改爲3,在窗口4要這樣做:

move-window -t 3 
+0

太棒了!它的作品,非常感謝! – fLOyd

1

要窗格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