Prerelease This site documents an alpha of libtmux. Its structure, URLs and APIs are subject to change.

kill_window

TypeScript

Delete tmux state; accepts no command payload. Close a window and every pane in it.

All TypeScript tools · JSON · Source

Arguments

force optional · boolean
Allow this to target the pane this server itself was called from, which is otherwise refused. It does not override the refusal to touch a pane a person is watching.
windowId required · string
Stable window id, e.g. @1.

Schemas

The schema defines required fields, nested values, defaults, and validation constraints.

Input schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"force": {
"description": "Allow this to target the pane this server itself was called from, which is otherwise refused. It does not override the refusal to touch a pane a person is watching.",
"type": "boolean"
},
"windowId": {
"description": "Stable window id, e.g. @1.",
"pattern": "^@\\d+$",
"type": "string"
}
},
"required": [
"windowId"
],
"type": "object"
}
Output schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"killed": {
"description": "Stable window id, e.g. @1.",
"pattern": "^@\\d+$",
"type": "string"
}
},
"required": [
"killed"
],
"type": "object"
}
Tool annotations
{
"destructiveHint": true,
"idempotentHint": false,
"openWorldHint": true,
"readOnlyHint": false
}
Esc

Type to search.