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
If I create a theme feature in .gitconfig (or an included file) named like [delta "Tak"], it will be silently ignored (also in e.g. --show-themes)
.gitconfig
[delta "Tak"]
--show-themes
This appears to be a result of force-lowercasing in some places for comparison and doing original-case lookups in other places.
Obviously there's an easy workaround, but it took quite a while to find out why my theme wasn't getting picked up. 🙂
The text was updated successfully, but these errors were encountered:
Hi @Tak, oops! OK, thanks very much for the report; will fix. (Of course, if you feel like a Rust PR, go for it also!)
Sorry, something went wrong.
Remove superfluous lowercasing of feature names.
20abf57
Fixes dandavison#716
9b8863a
Remove superfluous lowercasing of feature names. (#718)
b49f903
Fixes #716
Successfully merging a pull request may close this issue.
If I create a theme feature in
.gitconfig
(or an included file) named like[delta "Tak"]
, it will be silently ignored (also in e.g.--show-themes
)This appears to be a result of force-lowercasing in some places for comparison and doing original-case lookups in other places.
Obviously there's an easy workaround, but it took quite a while to find out why my theme wasn't getting picked up. 🙂
The text was updated successfully, but these errors were encountered: