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

get_pane_info

Returns metadata for one pane. Inspect tmux metadata; accepts no client-supplied executable input.

All Java tools · JSON · Source

Arguments

pane_id required · string
The pane to act on, such as %1. Every listing tool returns these.

Schemas

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

Input schema
{
"additionalProperties": false,
"properties": {
"pane_id": {
"description": "The pane to act on, such as %1. Every listing tool returns these.",
"type": "string"
}
},
"required": [
"pane_id"
],
"type": "object"
}
Output schema
{
"additionalProperties": false,
"properties": {
"active": {
"type": "boolean"
},
"command": {
"type": "string"
},
"id": {
"type": "string"
},
"index": {
"type": "integer"
},
"path": {
"type": "string"
},
"session_id": {
"type": "string"
},
"size": {
"type": "string"
},
"title": {
"type": "string"
},
"window_id": {
"type": "string"
}
},
"required": [
"id",
"index",
"window_id",
"session_id",
"active",
"command",
"path",
"title",
"size"
],
"type": "object"
}
Tool annotations
{
"destructiveHint": true,
"idempotentHint": false,
"openWorldHint": true,
"readOnlyHint": false,
"title": "Get pane info"
}
Esc

Type to search.