Sublime Text 2 Build Output - Funny Characters

For example, when I run the assembly with:

{
    "cmd": ["grunt"]
}

I am getting bash output formatting in the console. Is there a way to display formatting or remove formatting characters?

[4mRunning "lint:files" (lint) task[24m...
+5
source share
2 answers

This is not possible with ST2. Here is the official feature request:

http://sublimetext.userecho.com/topic/55640-htmlansi-in-output/

+4
source

The result looks much better if you pass the flag without color:

{
  "cmd": ["grunt", "--no-color"]
}
+5
source

All Articles