tmux 창 'ctrl-b q'의 디지털 표시 시간을 늘리는 방법

tmux 창 'ctrl-b q'의 디지털 표시 시간을 늘리는 방법

표시된 창 번호를 사용하여 표시 시간을 늘리는 방법은 무엇입니까 ctrl-b q?

창이 많으면 전환하려는 창에 입력할 시간이 부족한 경우가 있습니다.

답변1

ctrl-b :set display-panes-time 2000예를 들어 기존 세션에서는 2초로 설정할 수 있습니다. 이를 유지하려면 명령을~/.tmux.conf

set -g display-panes-time 2000

man tmux이는 OPTIONS 아래의 tmux 맨페이지( )에 설명되어 있습니다 .

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

또는 창 ID를 표시하도록 할 수 있습니다.창을 선택할 때까지Mark Stolsburg가 그의 논평에서 제안했듯이:

bind -T prefix q display-panes -d 0

관련 정보