Kill window¶
kill_window¶
kill_windowKill (close) a tmux window. Requires exact window_id (e.g. ‘@3’).
- Returns:
Use when you’re done with a window and all its panes.
Avoid when you only want to remove one pane — use kill_pane.
Side effects: Destroys the window and all its panes. Not reversible.
Example:
{
"tool": "kill_window",
"arguments": {
"window_id": "@1"
}
}
Response (string):
Window killed: @1
Parameters