-
Notifications
You must be signed in to change notification settings - Fork 27
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
feat: improve distinction of flags and parameters #110
Conversation
I'm not a fan of everything being the same color. I kind of like the parameters being a different color from the commands. I do like the |
I like this most recent screenshot better. Lemme know when you're ready to land. |
Last commit made exactly that happen :) From my side, this can be merged |
Thanks! |
This PR does three things: 1. highlight `=` in `--long-flag=value` flags (orange in my case) 2. highlight flag identifiers as parameters (blue) 3. highlight string values as strings (green) Before: ![image](https://github.com/user-attachments/assets/80a7260d-2bd9-4c5d-81b8-9416f84b3667) After: ![image](https://github.com/user-attachments/assets/c09237ec-7a3c-4f96-9670-b68897aa7368) Do we like these changes? --------- Co-authored-by: Maxim Onciul <[email protected]>
This PR does three things:
=
in--long-flag=value
flags (orange in my case)Before:
After:
Do we like these changes?