Ich habe einige Funktionen geschrieben, .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 dietabonly
Befehl, weiß aber nicht wie.
Antwort1
Rufen Sie für das Fenster, das Sie als aktuelles Fenster behalten möchten, einfach next-window
und kill-window
wiederholt auf, bis next-window
dies fehlschlägt:
while tmux next-window 2> /dev/null; do
tmux kill-window
done
Antwort2
Zum einfachen Kopieren, tmux >= 1.7:
tabo() { tmux kill-window -a; }
Danke, Chris Johnsen.