Windows

Shift+Arrow 無法在 tmux 中更改 Windows

  • December 28, 2020

我試圖綁定 Shift+left / Shift+Right 以更改 tmux 上的 Windows,但它不起作用。當我做 alt+arrow 時,它工作得很好。試過了

bind -n S-left  prev
bind -n S-right next

bind -n S-Left  previous-window
bind -n S-Right next-window  

他們都不工作。然而,

bind-key -n M-Right next-window
bind-key -n M-Left previous-window 

完美地工作。我在 Debian 上使用 Konsole。這是我的 .tmux.conf

# remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-Space
bind-key C-Space send-prefix
set -g default-terminal "screen-256color"
set -g mouse on
set -g terminal-overrides "xterm-color256:smcup@:rmcup@"
bind -n S-Left  previous-window
bind -n S-Right next-window   

問題是綁定已經在 konsole 中使用,一旦我從 konsole 更改它,它就開始在 tmux 上工作。

引用自:https://unix.stackexchange.com/questions/435410