Comment fermer d'autres fenêtres dans tmux?


9

J'écris quelques fonctions .bashrcpour en tmuxfaciliter 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 tabonlycommande, mais je ne sais pas comment.

Réponses:


5

Avec la fenêtre que vous souhaitez conserver comme fenêtre actuelle, appelez simplement next-windowet à kill-windowplusieurs reprises, jusqu'à ce qu'elle next-windowéchoue:

while tmux next-window 2> /dev/null; do
    tmux kill-window
done

6
La prochaine version de tmux (ie 1.7) devra kill-window -atuer toutes les fenêtres sauf la fenêtre actuelle.
Chris Johnsen

3

Pour une copie facile, tmux> = 1.7:

tabo()  { tmux kill-window -a; }

Merci Chris Johnsen.

En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.