-
Notifications
You must be signed in to change notification settings - Fork 151
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
Two features that would be nice to have #52
Comments
Thankyou for your kind words 😄 . About 1st - one thing we could try is having |
I think the 1st can be done simply via the non-tty-output mechanics: just setting the |
or maybe by using
and at last modify this bit -
to accept 3 values instead of 0 and 1 which acted as bool. What's your thought about this @AxelStrem ? |
@agauniyal That implementation for #1 is the path I started going down to implement this on my own. If I get something working well in the next few days I'll submit a pull request. |
@zethon sure thing 👍 |
@agauniyal yeah, that looks like a proper way to do it. Can't find any reasons for that not to work:) |
The second one looks like one of the feature request made up in #51 though. |
@zethon the first request has landed in develop branch and for now it's stable so you can fork the repo if you need that option right now. I'm putting halt on further feature development till #56 is completed which is going to bring major changes in the lib. I'll take look at the 2nd request after it. |
I was testing some scratch code and your 2nd request is also possible without changing much code. instead of direct writing to cout, you'll have to force rang to output colors(instead of autodetect itself) and write to a However there are 2 blocking task before this, one that I mentioned above and another being a terminfo parser that I'll be working on before I start out on this again. However I'm open to accepting PRs if someone wants to do this before me 😄 . |
Will your suggested implementation work for concatenating streams? If other words, I would like to do something like:
Or even have |
What I was thinking of was along the lines of a function
I'm open to suggestions and PRs if you've anything else in mind. |
Regarding the "turn on/off colors", what about an environment variable RANG_COLORS that can be set to on/off to force to turn on or off colors? That way code can stay the same but the user can control whether to enable or disable colors if the automatic detection says otherwise? |
I think it would be better to leave that choice to the user of this library. This way user can decide whether to use 'RANG_COLORS' or something other like 'COLORS' etc and call |
I am beginner but i can help. (I may need a mentor). If we make another class RangBuffer. it will contain all the enums and it will implement the output operator '<<'. I am on it |
1 A switch to turn this on and off. Not sure how this could be done in with the relative statelessness of the library, but it would be nice to be able to provide my users with an option to disable colors (some people hate it) and not have to have two different code paths. In other words, something like
std::cout << rang::fg::red << "Error";
would be red or not according to some switch.2 Storing the colors in a stream for later printing It would be nice if we could do something like:
And still have the text be red. I realize this would probably require significant changes and would probably be something more like:
But it would be a great feature!
Anyway, I'm definitely using this library already. Great work.
The text was updated successfully, but these errors were encountered: