How to terminate a window in tmux?

前端 未结 10 1374
你的背包
你的背包 2021-01-29 17:31

How to terminate a window in tmux? Like the Ctrlak shortcut in screen with Ctrla being the prefix.

10条回答
  •  离开以前
    2021-01-29 18:14

    Generally:

    tmux kill-window -t window-number
    

    So for example, if you are in window 1 and you want to kill window 9:

    tmux kill-window -t 9
    

提交回复
热议问题