If I set key bind of C-b to c-a in tmux how can I move the cursor to the beginning of the line?

我只是从 GNU 屏幕移动到 tmux,在屏幕上当我点击 C-a,然后键入 a再次可以带我到行的开头,我不知道如果我坚持 C-a在 tmux 我如何能绕过这一点?

68799 次浏览

如您所知,C-btmux中的默认前缀。C-b C-b用于向终端发送实际的 C-b字符。如果将前缀切换到 C-a,只需要重新绑定一些键,以更新发送 send-prefix命令的键。

对于你的 .tmux.conf:

# You probably already put this in
set prefix C-a


unbind-key C-b
bind-key C-a send-prefix

也许这是我使用的版本的问题,但是如果上面的代码对你不起作用,试试这个:

set -g prefix C-a
unbind-key C-b
bind-key C-a send-prefix