J'écris quelques fonctions .bashrc
pour en tmux
faciliter l'utilisation:
#!/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
Je veux implémenter la tabonly
commande, mais je ne sais pas comment.
kill-window -a
tuer toutes les fenêtres sauf la fenêtre actuelle.Pour une copie facile, tmux> = 1.7:
Merci Chris Johnsen.
la source