@inquirer/external-editor
Version:
Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT
18 lines (17 loc) • 445 B
JavaScript
;
/***
* Node External Editor
*
* Kevin Gravier <kevin@mrkmg.com>
* MIT 2018
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ReadFileError = void 0;
class ReadFileError extends Error {
originalError;
constructor(originalError) {
super(`Failed to read temporary file. ${originalError.message}`);
this.originalError = originalError;
}
}
exports.ReadFileError = ReadFileError;