memo
memo copied to clipboard
case insensitive search not working with upper-case accented letters?
Example:
- Search for
word- returns eitherwordorWordmatches :heavy_check_mark: - Search for
café- only returnscafématches but notCAFÉ:x: - Search for
CAFÉ- only returnsCAFÉmatches but notcafé:x:
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.
Related https://github.com/tomasklaen/uosc/discussions/656