Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing sorting of directory and filenames with numbers #18539

Merged
merged 2 commits into from
Jan 16, 2017

Conversation

jchadwick
Copy link
Contributor

@jchadwick jchadwick commented Jan 14, 2017

These changes replace the existing regex-based sorting of filenames and directory names with a call to the String.prototype.localeCompare() function which supports this natively via the numeric option.

Also added some unit test cases for filenames with numbers.

CC: @bpasero

Fixes #17495

@bpasero
Copy link
Member

bpasero commented Jan 14, 2017

@jchadwick incredible, I was not aware of these options. Thanks for enlighten me 👍

@bpasero bpasero self-assigned this Jan 14, 2017
@paror
Copy link

paror commented Jan 14, 2017

I read this on MDN about String.prototype.localeCompare(): When comparing large numbers of strings, such as in sorting large arrays, it is better to create an Intl.Collator object and use the function provided by its compare property.

@jchadwick
Copy link
Contributor Author

yeah I saw that too but it wasn't obvious how to do that here. I can take a stab, though.

@jchadwick
Copy link
Contributor Author

jchadwick commented Jan 14, 2017

Wow. Intl.Collator is significantly (97%) faster! (And I've switched to it)

@jchadwick jchadwick force-pushed the jchadwick/explorer-sorting-issue branch from c02e2ad to afc5448 Compare January 15, 2017 01:57
@paror
Copy link

paror commented Jan 15, 2017

Nice!

@bpasero bpasero added this to the February 2017 milestone Jan 16, 2017
@bpasero
Copy link
Member

bpasero commented Jan 16, 2017

LGTM

@jchadwick
Copy link
Contributor Author

Hey @bpasero, just an FYI, this wasn't attributed to me in the 1.9 release notes.

@bpasero
Copy link
Member

bpasero commented Feb 3, 2017

@jchadwick sorry for that, I wrongly set this PR for February and so it was not picked up by our automated tool that generates release notes for PRs. I will add this, but it might take a day or two until our website gets redeployed.

@bpasero
Copy link
Member

bpasero commented Feb 3, 2017

Added via microsoft/vscode-docs@229ceeb so it should be in the next website update.

@jchadwick
Copy link
Contributor Author

@bpasero No worries. Thanks!

@jchadwick jchadwick deleted the jchadwick/explorer-sorting-issue branch February 3, 2017 19:41
@github-actions github-actions bot locked and limited conversation to collaborators Mar 27, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Explorer: Does not sort files and folders with numerical values accordingly
4 participants