The ansi-colors tag has no wiki summary.
4
votes
3answers
74 views
Is there an easy way to COLOR-CODE the compiler outputs?
gcc (or other compilers) often generate huge text output and it's very difficult to see where the error is or miss warnings. I've done some search but havn't found a clean simple solution to color ...
2
votes
3answers
137 views
Non ad hoc way for vt100 / ansi-color escapes within M-x shell
I M-x shell to run a program that tries to produce nice color output. But I get:
?- true.
^[[1mtrue.^[[0m
This is clearly not a fault of EMACS, as it sets the environment variable TERM to dumb. It ...
1
vote
1answer
195 views
How to use the ANSIcolor plugin in Jenkins?
I have installed the ANSI-color plugin for Jenkins.
In the Jobs I have activated that plugin with the default profile 'xterm'.
I cannot figure out how to colorize the output of the Console Log when ...
2
votes
0answers
78 views
Invoke grc terminal colorizer on ALL commands implicitly
I love the grc colorizer for the terminal. However I have to explicitly prefix anything I want colorized with:
grc --config=conf.mine
Is there any way to have it automatically applied to everything ...
4
votes
2answers
668 views
emacs 24 ansi-term seems to ignore theme colors
I have upgraded to Emacs 24 from Emacs 23 on OSX using brew. Right now, I'm updating my .emacs to use the new stuff from emacs 24 esp. the new package manager and the built-in color themes. I ...
0
votes
1answer
124 views
Get ANSI-colored output from external command
I am writing a small script for watchr that runs my PHP unit tests.
Current script runs tests using system() and displays them colored.
I am trying to add libnotify functionality, but for that I ...
12
votes
2answers
664 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 ...
1
vote
1answer
857 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
274 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 ...
4
votes
2answers
2k 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'
...
5
votes
1answer
272 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))
{
...