사용하기 쉽도록 몇 가지 함수 .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
명령 을 구현하고 싶지만 방법을 모르겠습니다.
답변
현재 창으로 유지하려는 창을 사용하여 실패 할 때까지 호출 next-window
하고 kill-window
반복하십시오 next-window
.
while tmux next-window 2> /dev/null; do
tmux kill-window
done
답변
쉬운 복사를 위해 tmux> = 1.7 :
tabo() { tmux kill-window -a; }
크리스 존슨 감사합니다.