如何关闭 tmux 中的其他窗口?

如何关闭 tmux 中的其他窗口?

我编写了一些函数以.bashrc方便tmux使用:

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

我想实现tabonly命令,但不知道如何操作。

答案1

对于想要保留为当前窗口的窗口,只需反复调用next-windowkill-window,直到next-window失败:

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

答案2

为了方便复制,tmux >= 1.7:

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

感谢 Chris Johnsen。

相关内容