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 el tabonly
comando, pero no sé cómo.
kill-window -a
que eliminar todas las ventanas excepto la ventana actual.Para copiar fácilmente, tmux> = 1.7:
Gracias Chris Johnsen
fuente