Come chiudere altre finestre in tmux?


9

Scrivo alcune funzioni .bashrcper tmuxfacilitarne l'uso:

#!/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

Voglio implementare il tabonlycomando, ma non so come.

Risposte:


5

Con la finestra che vuoi mantenere come finestra corrente, basta chiamare next-windowe kill-windowpiù volte, fino a quando next-windowfallisce:

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

6
La prossima versione di tmux (cioè 1.7) dovrà kill-window -auccidere tutte le finestre tranne quella corrente.
Chris Johnsen,

3

Per una facile copia, tmux> = 1.7:

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

Grazie Chris Johnsen.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.