list-panes
List panes in a tmux window using the specified window ID, enabling users to manage and interact with terminal session layouts efficiently.
Instructions
List panes in a tmux window
Input Schema
Name | Required | Description | Default |
---|---|---|---|
windowId | Yes | ID of the tmux window |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"windowId": {
"description": "ID of the tmux window",
"type": "string"
}
},
"required": [
"windowId"
],
"type": "object"
}