SublimeANSI
SublimeANSI copied to clipboard
Does not work with python colored traceback
See https://pypi.python.org/pypi/colored-traceback/0.2.0 .
I got it working with mocha test output, but not this python package. The ANSI escape codes are stripped but no colors appear.
Repro steps:
- pip install colored-traceback
- write python script with
raise
- Build in sublime
- See no colors in traceback output
This is with the public release on package manager.
Python colored-traceback
uses RGB terminal colors via curses
. RGB colors are currently not supported by this project. Example colored-traceback
output, showing RGB color escapes (e.g. [38;5;26m
):
$ python test.py
[38;5;26mTraceback (most recent call last):[39m
File [38;5;28m"test.py"[39m, line [38;5;241m3[39m, in <module>
[38;5;28;01mraise[39;00m
[38;5;9mRuntimeError[39m: No active exception to reraise