更改前缀的.tmux.conf绑定


11

尝试在OS X 10.7上过渡到tmux(1.6版)(所以我确定我犯了一个noob错误),并且使用最简单的命令遇到了问题。在〜/ .tmux.conf中,我必须将前缀映射到Ctrl-a而不是:

set -g prefix C-a

但是当我:

Wed Apr 10$ source ~/.tmux.conf                                                       │                                                                                      
-bash: set: -g: invalid option                                                        │                                                                                      
set: usage: set [--abefhkmnptuvxBCHP] [-o option] [arg ...]                           │                                                                                      
Wed Apr 10$ 

我收到无效的选项错误。这仅仅是语法问题还是可能存在其他配置问题?我该如何解决?

Answers:


25

tmux.conftmux的配置文件。您不应该在shell中提供它,而是告诉tmux提供它。

以下任何一项都可以工作:

  • tmux source ~/.tmux.conf

  • tmux set -g prefix C-a

  • 按旧的前缀(CtrlB),:source ~/.tmux.conf

  • 按旧的前缀(CtrlB),:set -g prefix C-a


哇,很想回答-真的开始感到沮丧!
timpone 13-4-10
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.