DennisLi
DennisLi

Reputation: 4154

Tmux, How to type the prefix key itself

I set the prefix key to backquote, I can't type a backquote in vim. when I press `, it took it as the prefix key, then nothing inserts into the editor.

How can I input a backquote in vim, when I'm under tmux. Thanks~

`

Upvotes: 3

Views: 1016

Answers (1)

user11274868
user11274868

Reputation:

You need to bind a key to "send-prefix" or "send-keys '`'". Many people bind so that pressing the prefix twice sends the prefix character, for you that would be:

bind '`' send-keys '`'

Upvotes: 5

Related Questions