Wie schließe ich andere Fenster in tmux?

Wie schließe ich andere Fenster in tmux?

Ich habe einige Funktionen geschrieben, .bashrcum tmuxdie 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 dietabonlyBefehl, weiß aber nicht wie.

Antwort1

Rufen Sie für das Fenster, das Sie als aktuelles Fenster behalten möchten, einfach next-windowund kill-windowwiederholt auf, bis next-windowdies 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.

verwandte Informationen