如何设置键绑定到tmux中的切换窗格?

时间:2017-09-08 20:51:10

标签: tmux

这是我的.tmux.conf

set-option -g prefix  C-\
bind-key C-p  select-pane -U
bind-key C-n  select-pane -D
bind-key C-b  select-pane -L
bind-key C-f  select-pane -R

我想要的是绑定C-\ C-b以切换到左侧窗格,C-\ C-f切换到右侧窗格等。
但是当我开始使用tmux时,我收到了消息.tmux.conf:2: usage: set-option [-agosquw] [-t target-session|target-window] option [value] 知道怎么做吗?

1 个答案:

答案 0 :(得分:3)

它与你选择的前缀是C- \有关。 '\'字符用于指示下一行是set-option命令的延续。在C- \之后添加间隙或引用C- \,如下所述:https://superuser.com/questions/417236/tmux-with-non-alphanumeric-prefix

您可以使用以下内容:

set-option -g prefix 'C-\'
bind-key C-p  select-pane -U
bind-key C-n  select-pane -D
bind-key C-b  select-pane -L
bind-key C-f  select-pane -R