Adicione isso a ~/.tmux.conf
:
bind-key 0 if-shell 'tmux select-window -t :0' '' 'new-window -t :0'
Isso primeiro tentará mudar para a janela 0, e se isso falhar, crie-a.
Repita para 1-9.
É possível configurar tmux
para que, quando você quiser mudar para uma janela que não existe, ela crie a janela e depois alterne (evitando Ctrl-b c)?
Adicione isso a ~/.tmux.conf
:
bind-key 0 if-shell 'tmux select-window -t :0' '' 'new-window -t :0'
Isso primeiro tentará mudar para a janela 0, e se isso falhar, crie-a.
Repita para 1-9.
Tags tmux