A Sublime Text plugin that allows you to sort lines with methods that are not present by default.
Features | ST2 | ST3 | ST4 | Description |
---|---|---|---|---|
Natural order | x | x | x | Sort the lines using the natural order, you can read more in an excellent article by Jeff Atwood. |
Sort by the length of lines | x | x | x | |
Sort lines of text alphabetically | x | x | x | |
Sort numbers numerically | x | x | x | |
Semantic Versioning | x | x | Sort Semantic Versions, not supporting pre-releases / build metadata at the moment. | |
Regular expression | x | x | Sort the lines using a regex, to find the component and choose a subsort for the line. |
You can check the backward-incompatible-changes file to see if you need to do something to keep your current settings / workflow.
- Able to sort the entire file (when there is no selection)
- Case sensitivity option for the
alphabetically sort
method (Editable in SortBy.sublime-settings)
With Package Control
CTRL
+ SHIFT
+ P
on Windows/Linux.
COMMAND
+ SHIFT
+ P
on OS X.
and type SortBy in the box.
- Find your local Sublime Text
Packages
directory. - Copy the SortBy directory inside the Packages directory.
- Restart Sublime Text and enjoy !
- Select the text you want to sort.
- Go in the menu
Tools
,Packages
then you should seeSortBy
. - Choose your option. (Either Reverse or normal).
Enable this (true) to ignore the start & end of the selection; any line that is touching the selection, will be sorted.
Enable this (true) to sort with the case sensitivity (the lower and the upper cases will be sorted in two different groups).
This Subsort is disabled by default.
You can sort the line of the same length alphabetically.
To enable this subsort, add the subsort_length_of_line
property with the value ALPHABETICALLY
OR ALPHABETICALLY_DESCENDING
in the plugin settings.
- In the
Preferences
menu - Go to
Package settings
- Go to
SortBy
- Click on
Key Bindings - User
This will open / create a key bind file for the entire application.
When the file is created or opened, you need to override the key binding that you want.
- Copy the key binding from Default.sublime-keymap that you want to override (copy the entire JSON object). Example
{
"caption": "SortBy: Natural order",
"keys": [
"ctrl+shift+alt+q"
],
"command": "srtbyli",
"args": {
"sort": "natural_order",
"reversed": false
}
}
In this example, the key bind is ctrl+shift+alt+q
- With the JSON object in your clipboard, add it to the created file, by making sure to wrap it in a JSON array (
[...]
). Example
[
{
"caption": "SortBy: Natural order",
"keys": [
"ctrl+shift+alt+q"
],
"command": "srtbyli",
"args": {
"sort": "natural_order",
"reversed": false
}
}
]
- Change the
keys
to the key binding that you want.
If the old key binding is causing issues, you can disable it with the following JSON objet; just add it to the created file.
{
"keys": [
"ctrl+shift+alt+u"
],
"command": "noop"
}