Ich schreibe einige Funktionen ein .bashrc
, um tmux
die Verwendung zu vereinfachen:
#!/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
Ich möchte den tabonly
Befehl implementieren , weiß aber nicht wie.
kill-window -a
alle Fenster außer dem aktuellen Fenster schließen.Zum einfachen Kopieren ist tmux> = 1,7:
Danke Chris Johnsen.
quelle