tmux 移动 window

警告
本文最后更新于 2023-05-24,文中内容可能已过时。

移动 tmux-window

1
2
3
4
5
6
7
8
## 使用 Shift-> 或者 Shift<- 移动
## tmux2
bind-key -n S-Left swap-window -t -1
bind-key -n S-Right swap-window -t +1

## tmux3
bind-key -n S-Left swap-window -t -1\; select-window -t -1
bind-key -n S-Right swap-window -t +1\; select-window -t +1

相关内容

william 支付宝支付宝
william 微信微信
0%