Skip to content
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

case insensitive search not working with upper-case accented letters? #26

Open
xfzv opened this issue Oct 26, 2023 · 2 comments
Open

case insensitive search not working with upper-case accented letters? #26

xfzv opened this issue Oct 26, 2023 · 2 comments

Comments

@xfzv
Copy link
Contributor

xfzv commented Oct 26, 2023

Example:

  1. Search for word - returns either word or Word matches ✔️
  2. Search for café - only returns café matches but not CAFÉ
  3. Search for CAFÉ - only returns CAFÉ matches but not café
@po5
Copy link
Owner

po5 commented Oct 26, 2023

Lua issue, but probably can find code capable of handling that.

> a = "CAFÉ"
> a:lower()
cafÉ

Easiest solution would be to replace accented characters with non-accented ones.

@christoph-heinrich
Copy link
Contributor

Related tomasklaen/uosc#656

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants