tldr-pages / tldr-python-client

:snake: Python command-line client for tldr pages 📚
https://pypi.org/project/tldr/
MIT License
599 stars 95 forks source link

Fix #59 #60

Closed CosmicToast closed 6 years ago

CosmicToast commented 6 years ago

pass strip=False to colorama.init

felixonmars commented 6 years ago

This breaks simple | less though. I believe it should be an option rather than disabling altogether.

CosmicToast commented 6 years ago

This (latest commit) adds a new option -c / --color which forces disabling stripping. The default is to pass None (the default).

Side effects: colorama.init was moved into main().

felixonmars commented 6 years ago

Thanks!