如何关闭 tmux 中的选项卡?

How to close tab in tmux?

是否有关闭标签页的快捷键?
我要求创建一个标签 CTRL b + c
如果我想关闭 1:cmatrix* 选项卡,我应该使用什么快捷方式?

我想这就是您要找的: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
prefix+x: kill the current pane
prefix+&: kill the current window

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