How to view terminal color codes as colors in Sublime Text
sublimetext, sublimetext3
Solution
Install the SublimeANSI plugin and change the syntax of your log file to `ANSI` (using the `View` -> `Syntax` menu.)
Also available as ANSIescape on Package Control.
Problem
I have some log files that use color schemes. I would like to be able to view those logs in Sublime Text and still see the colors. Currently when I view the log file I see things like this: ``` 2013-11-20T15:53:02.711Z - [34minfo[39m: Default profiles created 2013-11-20T15:53:02.712Z - [34minfo[39m: Finished server initialization 2013-11-20T15:53:02.712Z - [34minfo[39m: Start collecting garbage ``` The text between [34m and [39m is colored. Is anyone aware of a plugin that does this?