ANSI colors in Terminal

Hello, 

 

Is is possible to enable ANSI colors support in the embedded terminal output?

 

Thanks

5
Avatar
Permanently deleted user

Without this, it becomes so distracting when you are using terminal for gradle.

0
Avatar
Permanently deleted user

Yes. And I use ANSI escape sequences 


RESET("\u001B[0m"),
BLACK("\u001B[40m"),
RED("\u001B[41m"),
GREEN("\u001B[42m"),
YELLOW("\u001B[43m"),
BLUE("\u001B[44m"),
PURPLE("\u001B[45m"),
CYAN("\u001B[46m"),
WHITE("\u001B[47m"),;
0

I missing it a lot when running behave tests :(

0

请先登录再写评论。