Como fechar outras janelas no tmux?

9

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 o tabonlycomando, mas não sei como.

kev
fonte

Respostas:

5

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

while tmux next-window 2> /dev/null; do
    tmux kill-window
done
chepner
fonte
6
A próxima versão do tmux (ie 1.7) terá que kill-window -amatar todas as janelas, exceto a janela atual.
Chris Johnsen
3

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

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

Obrigado Chris Johnsen.

Alexander
fonte