jameh
jameh

Reputation: 1259

can I override next session binding <prefix>-) in tmux?

I want to bind this to something more convenient, like M-] without the prefix:

bind -n M-] send-prefix \; send-keys )

in my tmux.conf doesn't work.

What's my mistake?... I also tried C-] and some others. When I'm at a prompt, it just writes the ) character, so the prefix isn't being captured by tmux.

There doesn't seem to be a command for "next session", just the predefined binding.

Upvotes: 3

Views: 811

Answers (1)

user9429402
user9429402

Reputation:

I put these lines in my .tmux.conf:

bind j switch-client -n
bind k switch-client -p

As you can see the -n and -p arguments are next and previous. Enjoy!

Upvotes: 3

Related Questions