undo_edit
Revert the most recent changes made to a specified file, restoring it to its previous state using the absolute file path.
Instructions
Undo the last edit to a file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Absolute path to the file |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Absolute path to the file",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}