vim_window
Split, close, and navigate Neovim windows using commands like split, vsplit, only, close, and wincmd with h/j/k/l for efficient window management.
Instructions
Manage Neovim windows: split, close, and navigate between windows
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | Window manipulation command: split or vsplit to create new window, only to keep just current window, close to close current window, or wincmd with h/j/k/l to navigate between windows |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"command": {
"description": "Window manipulation command: split or vsplit to create new window, only to keep just current window, close to close current window, or wincmd with h/j/k/l to navigate between windows",
"enum": [
"split",
"vsplit",
"only",
"close",
"wincmd h",
"wincmd j",
"wincmd k",
"wincmd l"
],
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}