1.0.1 • Published 7 years ago

default-editor v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

default-editor Build Status

Get the user's default editor based on the environment variable $EDITOR

Install

$ npm install --save default-editor

Usage

The exe defined by $EDITOR is assumed to be in the $PATH

const defaultEditor = require('default-editor');

// macOS
console.log(defaultEditor);
//=> 'vim'

// Windows
console.log(defaultEditor);
//=> 'notepad.exe'

License

MIT © Sean Escriva

Credits

Directly based on https://github.com/sindresorhus/default-shell and probably less useful.