Por que minhas janelas são destacadas quando abro o tmux pela primeira vez?

3

Às vezes, depois de ter ficado longe do meu computador por algum tempo, quando abro o tmux, todas as janelas de uma sessão têm uma espécie de realce em segundo plano:

Depoisdepercorrê-los,eledesapareceesomenteajanelaativatemumasterisco:

Por que isso acontece e é possível consertá-lo para que os rótulos das janelas nunca tenham um fundo destacado?

    
por Sam Selikoff 26.11.2014 / 05:39

1 resposta

4

Do 'man tmux':

 STATUS LINE
 [...]
 By default, the window list shows the index, name and (if
 any) flag of the windows present in the current session in ascending
 numerical order.  It may be customised with the window-status-format and
 window-status-current-format options.  The flag is one of the following
 symbols appended to the window name:

       Symbol    Meaning
       *         Denotes the current window.
       -         Marks the last window (previously selected).
       #         Window is monitored and activity has been detected.
       !         A bell has occurred in the window.
       ~         The window has been silent for the monitor-silence
                 interval.
       Z         The window's active pane is zoomed.

 The # symbol relates to the monitor-activity window option.  The window
 name is printed in inverted colours if an alert (bell, activity or
 silence) is present.

Como você não forneceu seu .tmux.conf , é difícil dizer o que aciona o alerta. Tente C-b : set-option -g monitor-activity off; set-option -g monitor-silence 0; set-option -g bell-action none e teste se o problema persistir. Você também pode desativar com força o realce adicionando window-status-activity-style none e window-status-bell-style none' to your .tmux.conf '.

    
por 16.12.2014 / 07:44

Tags