我编写了一些函数以.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-window
和kill-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。