You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These are the actual tool headings as they render on tool pages:
36
+
37
+
> `capture_pane` {badge}`readonly`
38
+
39
+
> `split_window` {badge}`mutating`
40
+
41
+
> `kill_session` {badge}`destructive`
42
+
43
+
### In a table
44
+
45
+
| Tool | Tier | Description |
46
+
|------|------|-------------|
47
+
| {toolref}`list-sessions`| {badge}`readonly`| List all sessions |
48
+
| {toolref}`send-keys`| {badge}`mutating`| Send commands to a pane |
49
+
| {toolref}`kill-pane`| {badge}`destructive`| Destroy a pane |
50
+
51
+
### In prose
52
+
53
+
Use {tool}`search-panes` to find text across all panes. If you know which pane, use {tool}`capture-pane` instead. After running a command with {tool}`send-keys`, always {tool}`wait-for-text` before capturing.
54
+
55
+
### Dense inline (toolref, no badges)
56
+
57
+
The fundamental pattern: {toolref}`send-keys` → {toolref}`wait-for-text` → {toolref}`capture-pane`. For discovery: {toolref}`list-sessions` → {toolref}`list-panes` → {toolref}`get-pane-info`.
Copy file name to clipboardExpand all lines: docs/glossary.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,4 +33,10 @@ Safety tier
33
33
34
34
Socket
35
35
The Unix socket used to communicate with a tmux server. Can be specified by name (`-L`) or path (`-S`).
36
+
37
+
SIGINT
38
+
Interrupt signal (Ctrl-C). Sent via {toolref}`send-keys` with `keys: "C-c"` and `enter: false`. Most processes terminate gracefully on SIGINT.
39
+
40
+
SIGQUIT
41
+
Quit signal (Ctrl-\\). Sent via {toolref}`send-keys` with `keys: "C-\\"` and `enter: false`. Stronger than {term}`SIGINT` — may produce a core dump on Unix. Use as an escalation when SIGINT is ignored.
0 commit comments