Reputation: 16261
For example, when I run a build with:
{
"cmd": ["grunt"]
}
I get bash formatting output in the console. Is there a way to either display the formatting or remove the formatting characters?
[4mRunning "lint:files" (lint) task[24m...
Upvotes: 5
Views: 1430
Reputation: 16261
This is not possible with ST2. Here is the official feature request:
http://sublimetext.userecho.com/topic/55640-htmlansi-in-output/
Upvotes: 4
Reputation: 629
The output looks much better if you pass the no-color flag:
{
"cmd": ["grunt", "--no-color"]
}
Upvotes: 5