web-dev-qa-db-ja.com

tmuxで現在のペイン以外のすべてのペインを閉じる方法

私は好みに合わせてペインを設定するためのキーをバインドしていますが、時々物事がめちゃくちゃになったり手に負えなくなったりして、すべてのペインを閉じてスクリプトを再実行したいと思います。現在のペインを除くすべてのペインを閉じる簡単なtmuxコマンドはありますか?

15
Digital Powers

「kill-pane」コマンドを使用できます。

 kill-pane [-a] [-t target-pane]
               (alias: killp)
         Destroy the given pane.  If no panes remain in the containing window, it is also destroyed.  The -a option kills all but the pane given with -t.

したがって、たとえば、ペイン0を除くすべてのペインを強制終了する場合は、次のようにします。

kill-pane -a -t 0

何をペイン化するかわからない場合は、「display-panes」コマンドを使用できます。

 display-panes [-t target-client]
               (alias: displayp)
         Display a visible indicator of each pane shown by target-client.  See the display-panes-time, display-panes-colour, and display-panes-active-colour
         session options.  While the indicator is on screen, a pane may be selected with the '0' to '9' keys.
22
J.C. Yamokoski

「^ b!」もありますによると http://www.dayid.org/os/notes/tm.html (私も試しましたが、うまくいきました)

6
George Boulos