Matt York
Matt York

Reputation: 16261

In Sublime Text 2 Build Output is Funky Characters

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

Answers (2)

Matt York
Matt York

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

jmconrad
jmconrad

Reputation: 629

The output looks much better if you pass the no-color flag:

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

Upvotes: 5

Related Questions