vim_buffer
Retrieve buffer contents with line numbers from Neovim for efficient text editing and code management.
Instructions
Get buffer contents with line numbers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | No | Optional file name to view a specific buffer |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filename": {
"description": "Optional file name to view a specific buffer",
"type": "string"
}
},
"type": "object"
}