Escribo algunas funciones .bashrc
para que sea tmux
fá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 eltabonly
comando, pero no sé cómo.
Respuesta1
Con la ventana que desea mantener como ventana actual, simplemente llame next-window
y kill-window
repetidamente, hasta que next-window
falle:
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.