We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
NO_COLOR
I want the completion dialog to have no color if the NO_COLOR environment variable is present.
ref ruby/irb#327
The text was updated successfully, but these errors were encountered:
A temporary solution would be this snippet for $HOME/.irbrc:
$HOME/.irbrc
require "reline/face" if ENV.key?("NO_COLOR") Reline::Face.config(:completion_dialog) do |conf| conf.define :default, foreground: :white, background: :black conf.define :enhanced, foreground: :black, background: :white conf.define :scrollbar, foreground: :white, background: :black end end
RDoc still in color though, but at least what related to reline works as expected.
Sorry, something went wrong.
No branches or pull requests
I want the completion dialog to have no color if the
NO_COLOR
environment variable is present.ref ruby/irb#327
The text was updated successfully, but these errors were encountered: