I have a module called termcolor
and I use it to print
important things to the console.
from termcolor import colored
print(colored("Warning: Coding intensely makes you forget about lunch.", "red"))
It works in repl.it, but when I moved to Sublime, I only get these:
[31mWarning: Coding intensely makes you forget about lunch.[0m
, the being <0x1b>, no idea why it does not copy well.
All I found was to get ASII syntax on the whole file, but that would be problematic because I am coding in python. Is there a plugin that fixes this? Thanks!
Btw, switching IDE's is a no-go. I use sublime on a Core 2 Duo 2GB Ram build for a reason.