Como fechar outras janelas no tmux?

Como fechar outras janelas no tmux?

Eu escrevo algumas funções .bashrcpara tmuxfacilitar o uso:

#!/bin/bash
# .bashrc

# vim            tmux
#-----  --------------------
tabc()  { tmux kill-window; }
tabe()  { tmux new-window; }
tabf()  { tmux find-window $@; }
tabn()  { tmux next-window; }
tabo()  { ; }                         # <-- How to `tabonly`?
tabp()  { tmux previous-window; }
qa()    { tmux kill-session; }
sp()    { tmux split-window; }
vsp()   { tmux split-window -h; }
on()    { tmux kill-pane -a; }

typeset -fx tab{c,e,f,n,o,p} {,v}sp qa on

Eu quero implementar otabonlycomando, mas não sei como.

Responder1

Com a janela que você deseja manter como a janela atual, basta chamar next-windowe kill-windowrepetidamente, até next-windowfalhar:

while tmux next-window 2> /dev/null; do
    tmux kill-window
done

Responder2

Para facilitar a cópia, tmux >= 1.7:

tabo()  { tmux kill-window -a; }

Obrigado Chris Johnsen.

informação relacionada