tmux_split_window
Split tmux session windows horizontally or vertically to create new panes for running multiple commands simultaneously in a terminal environment.
Instructions
Split the current window in a tmux session horizontally or vertically to create a new pane.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_name | Yes | Name of the tmux session | |
| vertical | No | If true, split vertically (side by side). If false, split horizontally (top and bottom). Default: false |
Input Schema (JSON Schema)
{
"properties": {
"session_name": {
"description": "Name of the tmux session",
"type": "string"
},
"vertical": {
"description": "If true, split vertically (side by side). If false, split horizontally (top and bottom). Default: false",
"type": "boolean"
}
},
"required": [
"session_name"
],
"type": "object"
}