Is it possible to run the default editor (which is set for git) using grunt-shell
to open and edit an file (on ubuntu)?
In my attempt it is running sublime, but every local system is using a different editor...
grunt.initConfig({
shell: {
changelog: {
options: {
stdinRawMode: true
},
command: 'subl -w CHANGELOG.md'
}
}
})