Answers:
您可以使用<prefix> D (C-b默认情况下为前缀)来选择要分离的客户端。它还会列出他们的颜色/行以及上次使用的时间。注意大写字母D,即Shift+ d。
您也可以使用tmux的detach-client选项
 detach-client [-P] [-a] [-s target-session] [-t target-client]
               (alias: detach)
         Detach the current client if bound to a key, the client specified
         with -t, or all clients currently attached to the session speci-
         fied by -s.  The -a option kills all but the client given with
         -t.  If -P is given, send SIGHUP to the parent process of the
         client, typically causing it to exit.
在tmux内从<prefix>:后面跟随detach [options]或在命令行上tmux detach [options]
prefix+'D',所以我不会忘记它。像魅力一样工作。
                    tmux detach-client -a将分离当前客户端以外的所有其他客户端。我经常打错字,prefix-D所以我更喜欢这种方法。我什至有一个功能detachothers () { tmux detach-client -a; 。
                    
<prefix> D小心,majuscule D在这里很重要!(我花了一些令人沮丧的时间来分离当前的客户,然后才意识到:D)