You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Plugin filenames are compared case-insensitively using the unicase crate. However, unicase does not implement the same case folding behaviour as Windows (not surprising, the latter's rules are a mystery).
In practice, the only variation that I've come across is that Greek 'Ρ', 'ρ' and 'ϱ' are all considered equal by unicase, but Windows only considers the first two to be equal. Unicase does give the same results for Turkish İ, ı, I and i.
There are also several places where filenames are stored in hashsets and compared case-insensitively by lowercasing them before storage, which is not necessarily the same as case folding them.
The text was updated successfully, but these errors were encountered:
Plugin filenames are compared case-insensitively using the unicase crate. However, unicase does not implement the same case folding behaviour as Windows (not surprising, the latter's rules are a mystery).
In practice, the only variation that I've come across is that Greek 'Ρ', 'ρ' and 'ϱ' are all considered equal by unicase, but Windows only considers the first two to be equal. Unicase does give the same results for Turkish İ, ı, I and i.
There are also several places where filenames are stored in hashsets and compared case-insensitively by lowercasing them before storage, which is not necessarily the same as case folding them.
The text was updated successfully, but these errors were encountered: