BattleMage0231/Stalkpixel

Change target editing mechanics

Closed this issue · 1 comments

Instead of passing in terminal arguments as flags in order to edit your list of targets, the application should open your default editor instead.

This can be accomplished with the 'open' node module.

let open = require('open');

(async() => {
    open('a.txt', {'wait': true});
})();