如何关闭tmux中的tab?

Cri*_*ian 7 terminal tmux

是否有快捷键来关闭标签?
我要求创建选项卡之类的CTRL b + c
东西如果我要关闭1:cmatrix*选项卡,我应该使用哪种快捷方式? 在此输入图像描述

Web*_*ies 15

我认为这就是你要找的东西:http://www.dayid.org/os/notes/tm.html

特别是这部分:

kill the current pane: ^b x OR (logout/^D)  
close other panes except the current one: ^b !  

The formatting here is simple enough to understand (I would hope). 
^ means ctrl+, so ^x is ctrl+x. M- means meta (generally left-alt or escape)+,
so M-x is left-alt+x
Run Code Online (Sandbox Code Playgroud)


TDH*_*TTT 6

prefix+x: kill the current pane
prefix+&: kill the current window
Run Code Online (Sandbox Code Playgroud)

请注意窗格和窗口之间的区别。OP实际上想杀死一个窗口。因此 prefix+& 将更适合,尤其是当窗口具有多个窗格拆分时。