Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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...
like image 896
Matt York Avatar asked Jul 13 '12 23:07

Matt York


2 Answers

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

{
  "cmd": ["grunt", "--no-color"]
}
like image 132
jmconrad Avatar answered Nov 09 '22 22:11

jmconrad


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

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

like image 38
Matt York Avatar answered Nov 10 '22 00:11

Matt York