Use case or problem
I’m trying to align my Obsidian order with what Windows file explorer uses for the “collation”/sorting using Unicode with the file names. I understand Obsidian uses the collator linked below just as Chromium seems to (not a developer). If I’m correct, the Collator should take my OS settings into account and align Obsidian with my File Explorer.
Intl.Collator - JavaScript | MDN
Here’s the use case:
I want to use other non-ASCII Unicode characters to help organize my vault in a way that works on numerous platforms. I could do that 000, 001 number thing, but that’s sort of the point with this. Emojis are ultimately just numbers in the background (Unicode).
Most platforms use emojis and organize them relatively the same based on locale.
Proposed solution
Are there some parameters missing in the background that would fix this?
options
orlocales
?
new Intl.Collator()
new Intl.Collator(locales)
new Intl.Collator(locales, options)
Intl.Collator()
Intl.Collator(locales)
Intl.Collator(locales, options)