tmux
Installation
SKILL.md
tmux Pane Operations
This skill provides a guide for interacting with separate tmux panes.
1. Basic Commands
1.1. Send Commands to Another Pane
tmux send-keys -t %N "command" Enter
%N: Target pane ID (e.g.,%33,%42)"command": Command to execute in the target paneEnter: Simulate pressing Enter key to execute the command
IMPORTANT: "command" and Enter MUST be on the same line.
If separated by a newline, the newline is treated as premature Enter.
Related skills