Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't use ANSI colors when terminal is dumb #710

Merged
merged 1 commit into from
Jan 22, 2020
Merged

Don't use ANSI colors when terminal is dumb #710

merged 1 commit into from
Jan 22, 2020

Conversation

tpope
Copy link
Contributor

@tpope tpope commented Jan 21, 2020

🌈

It is possible for stdout to be a tty and still not support ANSI colors. One example of this is the :! command in GVim or MacVim. I had long assumed that the only way to reliably detect this was to introduce a heavyweight dependency such as libncurses, but recently I learned that checking that the environment variable TERM is set to a value other than dumb is largely sufficient. This is what Git does, for example:

https://github.com/git/git/blob/0d0ac3826a3bbb9247e39e12623bbcfdd722f24c/editor.c#L11-L15

This patch implements identical behavior for Thor.

@rafaelfranca rafaelfranca merged commit 6610df3 into rails:master Jan 22, 2020
@tpope tpope deleted the dumb-terminal branch January 27, 2020 15:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants