Tyriar / vscode-sort-lines

Visual Studio Code extension to sort lines of text
https://marketplace.visualstudio.com/items/Tyriar.sort-lines
MIT License
146 stars 42 forks source link

Case insensitive sort. #101

Closed Kolobamanacas closed 2 years ago

Kolobamanacas commented 2 years ago

I have the following list of strings:

c
a
B

When I sort them using the plugin, I get the following list:

B
a
c

It is clearly seen that upper cases letters considered less than low case letters, even if they appear later in the alphabet. I wish Sort Lines to have an option to make sort case insensitive, to have the following result after sorting:

a
B
c
Kolobamanacas commented 2 years ago

Sorry, my bad. I missed the docs.