是否可以运行默认编辑器(为 git 设置)grunt-shell
来打开和编辑文件(在 ubuntu 上)?
在我的尝试中,它运行崇高,但每个本地系统都使用不同的编辑器......
grunt.initConfig({
shell: {
changelog: {
options: {
stdinRawMode: true
},
command: 'subl -w CHANGELOG.md'
}
}
})
是否可以运行默认编辑器(为 git 设置)grunt-shell
来打开和编辑文件(在 ubuntu 上)?
在我的尝试中,它运行崇高,但每个本地系统都使用不同的编辑器......
grunt.initConfig({
shell: {
changelog: {
options: {
stdinRawMode: true
},
command: 'subl -w CHANGELOG.md'
}
}
})