0

The default command C-b l to switch between two latest windows doesn't work on my Ubuntu 16.04. But it works if set bind-key l last-window after started tmux server.

I tried to set the bind key command in ~/.tmux.conf: bind-key l last-window or bind-key a last-window

C-b l still doesn't work, but C-b a works.

Why C-b l doesn't work? How to trace the issue?

Reference:

How to switch between two latest windows in tmux?

Ubuntu tmux manual

Peter
  • 105

1 Answers1

0

Try to remove ~/.tmux.conf as in this thread.

List my steps: 1. find the bind key with tmux list-keys | grep "prefix l" 2. If exists with another command, remove it from .tmux.conf and restart your tmux; if it does not exist, your setting for bind key is not effective.

Peter
  • 105