Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
0answers
150 views

emacs strips away all ansi color codes in shells

I'm using emacs 24 on OS X and have the strange problem that I'm unable to see any color codes. Emacs seems to just ignore them. My motivation is to see colored output from cmake, llvm and the ...
4
votes
1answer
185 views

Why the RedirectStandardOutput does not have the necessary ANSI codes?

Ok here's a simple Console Application I made to test the RedirectStandardOutput of the Process.StartInfo. foreach (c In [Enum].GetValues(GetType(ConsoleColor)) { ...
2
votes
2answers
872 views

Printing to STDOUT and log file while removing ANSI color codes

I have the following functions for colorizing my screen messages: def error(string): return '\033[31;1m' + string + '\033[0m' def standout(string): return '\033[34;1m' + string + '\033[0m' ...
1
vote
1answer
236 views

ANSI colors in Java Swing text fields

Is there any simple way to parse Ansi colors in log files, and use it in text fields in Swing (JTextArea, JTextPAne,...)?
1
vote
1answer
197 views

python kata problem: Color not working

When I try to run the python koans, I don't get the colors, instead I get the ANSI color codes. I want to get the colors. It seems to be using colorama under the hood. I try to run colorama sample ...