ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Sort Lines By Selection

by sascha-wolf ST3

A line sort plugin for Sublime Text 3 which enables you to sort lines based on the selected text in the line

Details

  • 0.1.0
  • github.​com
  • github.​com
  • 10 years ago
  • 21 minutes ago
  • 10 years ago

Installs

  • Total 4K
  • Win 2K
  • Mac 1K
  • Linux 826
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13
Windows 0 0 1 1 0 0 1 2 0 0 0 0 1 0 0 1 2 1 0 0 0 0 1 1 0 0 1 0 0 0 0 2 0 0 1 0 0 0 0 1 0 0 1 0 0
Mac 0 1 1 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Linux 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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!