How to increase tmux pane numbers display time `ctrl-b q`

tmux

How can I increase the display time of the pane numbers seen with ctrl-b q?

When having lots of panes, it is sometimes not enough time to key in the one I want to switch to.

Best Answer

You can set it in an existing session with ctrl-b :set display-panes-time 2000 for 2 seconds for example. To persist it, put the command into your ~/.tmux.conf

set -g display-panes-time 2000

This is documented in the tmux manpage (man tmux) under OPTIONS:

 display-panes-time time
    Set the time in milliseconds for which the indicators shown by the display-panes command appear.
Related Question