There is a file sorting issue in both OneCommander and Windows File Explorer. When files are sorted alphabetically, they are sorted based on their full names with extension, which sometimes leads to unexpected results.
There is a directory with two files "My file.txt" and "My file revised.txt". Files are sorted alphabetically, in ascending order.
Intuitively expected sort order:
My file.txt
My file revised.txt
Actual sort order, because space goes before dot (which is from file extension) in symbols table:
My file revised.txt
My file.txt
This behavior persists even if file extensions are hidden, which makes it completely unintuitive.
I propose the followng way of alphabetical sorting:
1. Files are sorted based on their names without file extension
2. Files that have same name but different extensions are sorted based on the alphabetical order of their extensions (or based on their full names, which is equivalent in that case)
I would want this sorting behavior at least as an option in settings, because this sorting issue is annoying for me