Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 tmux 3.1c 版。在 tmux 中切换到上一个窗口的命令如下:
Ctrl-a + M + p
M但是,我认为应该是Alt Gror的“元键”Alt不会触发(在某些时候,我遇到ESC了元键,但这太令人困惑了)。因此,我想用命令轻松替换切换到上一个窗口
M
Alt Gr
Alt
ESC
Ctrl-a + p
并切换到下一个窗口
Ctrl-a + n
Ctrl-a我自己的前缀在哪里。这怎么可能?我试图在我的.tmux.conf文件中更改它,但没有得到预期的结果。提前致谢!
Ctrl-a
.tmux.conf
我的 tmux.conf 中有这个
#urxvt tab like window switching bind -n S-down new-window bind -n S-left prev bind -n S-right next
要切换选项卡的位置:
#Swapping Tmux windows bind-key -n C-S-Left swap-window -t -1 bind-key -n C-S-Right swap-window -t +1