vim_file_open
Open files directly into new buffers within Neovim using a specific filename path, streamlining file access during code editing.
Instructions
Open files into new buffers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | Path to the file to open |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filename": {
"description": "Path to the file to open",
"type": "string"
}
},
"required": [
"filename"
],
"type": "object"
}