如何在Sublime Text Build System输出中抑制输出?
我试过了,但它说<input type="text" ng-model="newCustomer.name">
<input type="text" ng-model="newCustomer.age">
<button type="submit" ng-click="addCustomer()">Submit</button>
Error: unrecognized or incomplete command line.
答案 0 :(得分:0)
{
"name": "ipconfig",
"shell_cmd": "ipconfig >nul 2>&1"
}
我总是使用shell_cmd,因为您可以像在命令行上一样编写命令,而不是试图找出数组中的多个参数无意义。这对我有用。