vim_visual
Define text selections in a buffer by specifying start and end line and column numbers, enabling precise visual mode operations in Neovim workflows.
Instructions
Create visual mode selections in the buffer
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endColumn | Yes | The ending column number for visual selection (0-indexed) | |
endLine | Yes | The ending line number for visual selection (1-indexed) | |
startColumn | Yes | The starting column number for visual selection (0-indexed) | |
startLine | Yes | The starting line number for visual selection (1-indexed) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"endColumn": {
"description": "The ending column number for visual selection (0-indexed)",
"type": "number"
},
"endLine": {
"description": "The ending line number for visual selection (1-indexed)",
"type": "number"
},
"startColumn": {
"description": "The starting column number for visual selection (0-indexed)",
"type": "number"
},
"startLine": {
"description": "The starting line number for visual selection (1-indexed)",
"type": "number"
}
},
"required": [
"startLine",
"startColumn",
"endLine",
"endColumn"
],
"type": "object"
}