Skip to main content
Glama

mcp-neovim-server

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

NameRequiredDescriptionDefault
columnYesThe column number where the mark should be placed (0-indexed)
lineYesThe line number where the mark should be placed (1-indexed)
markYesSingle 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" }

Other Tools from mcp-neovim-server

Related Tools

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/bigcodegen/mcp-neovim-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server