¿Cómo cerrar otras ventanas en tmux?

¿Cómo cerrar otras ventanas en tmux?

Escribo algunas funciones .bashrcpara que sea tmuxfácil de usar:

#!/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

quiero implementar eltabonlycomando, pero no sé cómo.

Respuesta1

Con la ventana que desea mantener como ventana actual, simplemente llame next-windowy kill-windowrepetidamente, hasta que next-windowfalle:

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

Respuesta2

Para copiar fácilmente, tmux >= 1.7:

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

Gracias Chris Johnsen.

información relacionada