You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
486 B
16 lines
486 B
const launch = require('launch-editor') |
|
|
|
exports.launch = (...args) => { |
|
const file = args[0] |
|
console.log(`Opening ${file}...`) |
|
let cb = args[args.length - 1] |
|
if (typeof cb !== 'function') { |
|
cb = null |
|
} |
|
launch(...args, (fileName, errorMessage) => { |
|
console.error(`Unable to open '${fileName}'`, errorMessage) |
|
console.log(`Try setting the EDITOR env variable. More info: https://github.com/yyx990803/launch-editor`) |
|
|
|
if (cb) cb(fileName, errorMessage) |
|
}) |
|
}
|
|
|