Sort Lines By Selection
A line sort plugin for Sublime Text 3 which enables you to sort lines based on the selected text in the line
Details
Installs
- Total 4K
- Win 2K
- Mac 2K
- Linux 840
Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 2 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 3 | 2 | 0 | 0 | 0 | 0 | 1 | 1 | 2 | 0 | 2 | 0 | 2 | 1 | 1 | 0 | 1 | 0 | 2 | 2 | 0 | 1 | 1 | 1 |
Mac | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 2 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Selection Sorter
Did you ever want to sort some class members via their names, easily, or a number of lines via a string in the middle? Well, now you can.
This plugin enables you to sort lines by the text you have currently selected.
Default Commands
It ships with two commands you can find in the command palette:
- Sort Lines by Selection
- Sort Lines by Selection (Case Sensitive)
Customization
The plugin supports custom morphing of the selected strings before sorting, via little python snippets. For example you could reverse the string which is used for sorting, sort via the last character, only via the first etc..
You can make your custom sort available by creating a Default.sublime-commands
file in your packages/user
folder, or alternatively a keybinding which executes the command.
Example
Here a little example for a custom line sort:
Default.sublime-commands
[
{
"caption": "Sort Lines by Selection",
"command": "sort_lines_by_selection",
"args": {
"morph": "s[::-1]" // This will reverse the string
}
}
]
As you can see I reference a variable s
(a string) and reverse it. This would sort the lines by the reversed selection. So a line with a selection of “AZZZZ” would be at the bottom, rather than at the top.
Note however that only a single statement is allowed, otherwise your custom morph will not work.
Technically speaking the morph argument is the “body” of a python lambda, and will be used as the key argument of the built-in sorted function.
Happy sorting!