Tyriar / vscode-sort-lines

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

Sort lines (case interleaved) #115

Open robertefry opened 2 years ago

robertefry commented 2 years ago

Can you add sorting which is case-insensitive ascending, but ties are resolved by case.

For example; the following lines

Carrot
blue
alarm
Apple
Banana
Apricot

are sorted into

Apple
Apricot
alarm
Banana
blue
Carrot

Apricot is sorted after Apple, because ..r.... is lexicographical after ..p... alarm is sorted after Apricot, because a.... is lowercase and A...... is uppercase.

robertefry commented 2 years ago

If I have the time, I will look into making VSCode extensions, and try to send a merge request :)