-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Only do NFD normalization for latex tab-completion if needed #41870
Only do NFD normalization for latex tab-completion if needed #41870
Conversation
# Decompose NFC-normalized identifier to match tab-completion | ||
# input if the first search came up empty. | ||
s = normalize(s, :NFD) | ||
latex = symbol_latex(s) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe this second lookup is not needed?
Any chance this could be considered for backporting? |
It may not be important, but the commits (not the issue) have zero (0) in "0nly", not "Only". I checked and you can't search for it on Github, and the difference isn't very obvious in some fonts... |
Before this PR:
With this PR:
Fixes #39814.