ฉันเขียนฟังก์ชั่นบางอย่าง.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
คำสั่ง แต่ไม่ทราบว่าต้องทำอย่างไร
kill-window -a
ฆ่า windows ทั้งหมดยกเว้นหน้าต่างปัจจุบัน