Velvet Star Monitor

Standout celebrity highlights with iconic style.

updates

How to switch between two latest windows in tmux?

Writer Matthew Harrington

screen has a Ctrl-a,Ctrl-a to switch between two latest windows?

How to do it in tmux?

1

4 Answers

To do this in tmux, you do

Ctrl-Bl

(that is an 'L'). This assumes you have left Ctrl-B as your activation key.

If you want to use the same keypresses as screen, then add the following to your ~/.tmux.conf:

set-option -g prefix C-a
bind-key C-a last-window

The first sets Ctrl-A as your activation key, the second says Ctrl-A after activation should go to the last window.

0

Paul's answer is correct, but it seems to leave you without a way to type ^A.

See this thread for details, but essentially you can do this to get a C-a (^A) if you need one:

bind-key v send-prefix

Now if you type C-a v you'll get a ^A.

To follow on to fbicknel and Paul:

you can

bind-key C-a last-window
bind-key a send-prefix

which will let you use a screen-like "ctrl-a a" to insert a 'ctrl a'

I added:
bind-key l last-window
Into my tmux config file which by default is at ~/.tmux.conf.
Reload tmux, switch windows at least once and press:
ctrl+B (default prefix) + l (lower-case L) works like a charm!

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy