私はtmuxを学んでいるだけで、スクリーンの経験はありません。あるtmuxクライアントのウィンドウを別のtmuxクライアントに移動できるかどうか疑問に思っています。 IRCクライアントを画面上の新しいウィンドウに移動したい。
はい、move-windowコマンドを使用できます。
move-window [-d] [-s src-window] [-t dst-window]
(alias: movew)
これは、src-windowのウィンドウがdst-windowに移動することを除いて、link-windowに似ています。
src-windowとdst-windowの形式は、session:window.paneです(sessionとwindowは、nameまたはidのいずれかです)。
したがって、「irc」ウィンドウで「chat」セッションがあり、それを「tmuxプロンプト」で実行できる「other_session」セッションに移動するとします。
move-window -s chat:irc -t other_session
すでにchat:ircウィンドウにいる場合は、ソースを指定する必要はありません。
move-window -t other_session:
それを行います。
同様に、「other_session」セッションからターゲットを指定する必要はありません。
movew -d irc:irc_window
Windows /セッションに名前を付けていない場合は、それらのIDを使用する必要があります。
別の便利なもの:
link-window [-dk] [-s src-window] [-t dst-window]
(alias: linkw)
Link the window at src-window to the specified dst-window. If dst-window is specified
and no such window exists, the src-window is linked there. If -k is given and
dst-window exists, it is killed, otherwise an error is generated. If -d is given, the
newly linked window is not selected.
これは、複数のセッションでウィンドウを共有できることを意味します。
Assuming I have these 2 sessions: daemons and proj
tmux link-window -dk -s daemons:0 -t proj:0