vim_tab
Command Neovim tabs directly: create, close, navigate, or list open tabs. Simplify tab management for efficient editing workflows.
Instructions
Manage Neovim tabs: create, close, and navigate between tabs
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Tab action to perform | |
| filename | No | Filename for new tab (optional) |
Input Schema (JSON Schema)
{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "action": { "description": "Tab action to perform", "enum": [ "new", "close", "next", "prev", "first", "last", "list" ], "type": "string" }, "filename": { "description": "Filename for new tab (optional)", "type": "string" } }, "required": [ "action" ], "type": "object" }