1Password is ignoring the dash (-) character in the folder names when sorting it [Intentional]
The sorting in the folders pane has wrong ordering
1Password Version: 4.6.0.585
Extension Version: Not Provided
OS Version: Win 7
Sync Type: Not Provided
Comments
-
you are correct, only with "-" there is this problem, it's just ignores it
"." and "_" are working fine0 -
@skyrkou @MikeT This is not a bug. When we sort alphabetically, we then use
CompareString
that is included with the Windows OS:Accoring to the Microsoft documentation, character sets include ignorable characters. The CompareString function does not consider such characters when it performs a culture-sensitive comparison. For example, a culture-sensitive comparison of "animal" with "ani-mal" indicates that the two strings are equivalent.
Here is a complete list of ignorable characters as defined by the Unicode consortium, specifically section 5.21: http://www.unicode.org/versions/Unicode6.2.0/ch05.pdf
0