Kill a pane. Killing a window’s last pane closes the window. Delete tmux state; accepts no command payload.
All Rust tools · JSON · Source
Arguments
panerequired · string- The `%`-prefixed pane id, as `list_panes` reports it.
Schemas
The schema defines required fields, nested values, defaults, and validation constraints.
Input schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "properties": { "pane": { "description": "The `%`-prefixed pane id, as `list_panes` reports it.", "type": "string" } }, "required": [ "pane" ], "type": "object"}Output schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "properties": { "id": { "description": "The id of what was destroyed.", "type": "string" } }, "required": [ "id" ], "type": "object"}Tool annotations
{ "destructiveHint": true, "idempotentHint": true, "openWorldHint": false, "readOnlyHint": false, "title": "Kill Pane"}