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

Provide the settings to properly sort strings with special characters #23

Open
sshishov opened this issue Apr 24, 2024 · 1 comment
Open

Comments

@sshishov
Copy link

The strings with special characters are not sorted as expected:

'a',
'a.b.c',
'a.b.c_d',

The following line in ASCENDING mode sorting should not be changed.

But the result of sorting is the following:

'a.b.c_d',
'a.b.c',
'a',

The same issue is happening on VSCode original sorting: microsoft/vscode#48123

We hope that using this plugin we can fight the original issue

@sgryjp
Copy link
Owner

sgryjp commented Apr 27, 2024

@sshishov Hi! Can you share me why you want to sort in that way? I understood the feature you requested but I want to know the usage of it and/or motivation behind it, as it is very beneficial on designing the feature enhancement. (e.g.: should the code-point based sorting should be a global option to switch behavior of sort commands? ...or there should be separate new dedicated commands for code-point based sorting?)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants