คุณกำลัง "ทำเครื่องหมาย" บานหน้าต่าง:
-m และ -M ใช้ในการตั้งค่าและล้างบานหน้าต่างที่ทำเครื่องหมายไว้ มีหนึ่งบานหน้าต่างที่ทำเครื่องหมายไว้ในแต่ละครั้งการตั้งค่าบานหน้าต่างที่ทำเครื่องหมายใหม่ล้างข้อมูลล่าสุด บานหน้าต่างที่ทำเครื่องหมายไว้เป็นเป้าหมายเริ่มต้นสำหรับ -s to join-pane, swap-pane และ swap-window
การกระทำบางอย่างจะกำหนดเป้าหมายบานหน้าต่างที่ทำเครื่องหมายไว้เป็นค่าเริ่มต้น นี่คือตัวอย่างสคริปต์ทุบตีที่จะทดสอบด้วย คุณสามารถเรียกใช้งานสคริปต์นี้จากภายในเซสชัน tmux
# /usr/bin/env bash
set -euo pipefail
# Make three vertically split windows with text in each.
tmux split-window -v
tmux split-window -v
tmux select-layout even-vertical
tmux send-keys -t 0 'echo pane zero' C-m
tmux send-keys -t 1 'echo pane one' C-m
tmux send-keys -t 2 'echo pane two' C-m
# You can now swap the current pane with an explicitly targeted pane. Here, we
# change pane ordering from 0-1-2 to 1-0-2, and back again.
tmux select-pane -t 0
tmux swap-pane -t 1
tmux swap-pane -t 1
# You can also swap panes by "marking" one and letting the target of the swap be
# implicit. Here, we change ordering from 0-1-2 to 1-0-2, and back again.
tmux select-pane -t 0
tmux select-pane -t 1 -m
tmux swap-pane
tmux swap-pane
สำหรับข้อมูลเพิ่มเติมโปรดดู tmux (1)