vim_macro
Record, stop, and play Neovim macros using specific registers and counts to automate repetitive text editing tasks in your workflow.
Instructions
Record, stop, and play Neovim macros
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Action to perform with macros | |
| count | No | Number of times to play macro (default: 1) | |
| register | No | Register to record/play macro (a-z, required for record/play) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"action": {
"description": "Action to perform with macros",
"enum": [
"record",
"stop",
"play"
],
"type": "string"
},
"count": {
"description": "Number of times to play macro (default: 1)",
"type": "number"
},
"register": {
"description": "Register to record/play macro (a-z, required for record/play)",
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
}