vim_mark
Set named marks at specific line and column positions in a text buffer using a single lowercase letter for identification, enabling precise navigation and editing.
Instructions
Set named marks at specific positions in the buffer
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| column | Yes | The column number where the mark should be placed (0-indexed) | |
| line | Yes | The line number where the mark should be placed (1-indexed) | |
| mark | Yes | Single lowercase letter [a-z] to use as the mark name |
Input Schema (JSON Schema)
{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "column": { "description": "The column number where the mark should be placed (0-indexed)", "type": "number" }, "line": { "description": "The line number where the mark should be placed (1-indexed)", "type": "number" }, "mark": { "description": "Single lowercase letter [a-z] to use as the mark name", "pattern": "^[a-z]$", "type": "string" } }, "required": [ "mark", "line", "column" ], "type": "object" }