崇高的文字:不打印构建命令的路径
在Sublime Text 3中,我的JavaScript文件具有以下构建脚本。 { "shell_cmd": "node --harmony --use-strict --harmony_generators $file" } 问题在于,当节点返回错误时,出于某种原因,Sublime会弹出路径,该路径不会换行并污染输出。 C:\Users\JFD\Desktop\playground.js:2 console.log(b); // ReferenceError: a is not defined ^ ReferenceError: b is not defined at Object.<anonymous> (C:\Users\JFD\Desktop\playground.js:2:13) at Module._compile (module.js:449:26) at Object.Module._extensions..js (module.js:467:10) at Module.load (module.js:349:32) at Function.Module._load (module.js:305:12) at Function.Module.runMain (module.js:490:10) at startup (node.js:119:16) at node.js:827:3 [Finished …