1
0
mirror of https://github.com/cheat/cheat.git synced 2025-06-07 07:38:36 +02:00

Made it also necessary to set an environment variable in order to display colors to the terminal (in an effort to avoid an otherwise inevitable holy-war).

This commit is contained in:
Chris Lane 2013-08-21 22:56:33 -04:00
parent fabd1bc242
commit c15e836268

2
cheat

@ -6,7 +6,7 @@ DEFAULT_CHEAT_DIR = os.path.join(os.path.expanduser('~'), '.cheat')
USE_PYGMENTS = False
# NOTE remove this check if it is confirmed to work on windows
if os.name == 'posix':
if os.name == 'posix' and 'CHEATCOLORS' in os.environ:
try:
from pygments import highlight
from pygments.util import ClassNotFound