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

Column Sort

by MatiMax ST3

ColumnSort is a plugin package for the Sublime text editor version 3 which provides a simple means of sorting tab-separated text by column.

Details

Installs

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

Readme

Source
raw.​githubusercontent.​com

description: >- ColumnSort is a plugin package for Sublime Text version 3 which provides a

simple means of sorting tab-separated text by column.

ColumnSort

Limitations

  • ColumnSort allows to either specify the column (field) separation character, or let ColumnSort try to auto-detect the separator via the settings.
  • Either ascending or descending sorting is available via the settings.

Usage

  1. Install the package either
    • by copyping the package to Sublime’s package folder using the menu entry Browse Packages…, or
    • by using the very convenient Package Control plugin and choosing the Install Package command from the command palette.
  2. Open a file with column-separated content, or produce or paste suchlike text in a buffer.
  3. Select the lines you want to include to be sorted.
  4. Press Cmd Ctrl X on the Mac, Ctrl Meta X on Linux or Ctrl Alt X on Windows. This will produce a popup window which displays the content of the first row as separate entries to choose from. The idea behind this is that often the first row contains header descriptions which makes identifying the data in the columns much easier.
  5. Select an entry in the popup window with the up and down arrow keys and press Return or Enter, or click on an entry with the mouse.
  6. The selected text will be replaced with the sorted text.

Settings

The settings file currently has the following options to tinkle with:

columnsort_field_separator (default: "auto")

Field separation character, or "auto" if ColumnSort should try to detect columns separated by one of the following characters:

  • Tabulator (\t)
  • Comma (,)
  • Semicolon (;)
  • Colon (:)
  • Vertical Bar (|)
  • Forward Slash (/)
  • Hash (#)

NOTE 1: The order of the field separation characters listed here is also defining their priority in which they will be detected and processed. As a consequence, a file which contains more than one field separation character will be split into columns by the first occurrence of those characters in top to bottom order.

NOTE 2: Currently „string escaping“ using single or double quotes is not supported by the splitting method used. It is therefore highly recommended to stick with tab-separation for a hasslefree and reliable operation.

columnsort_skip_header (default: true)

ColumnSort cannot predict if the selected text contains a header line or not. Set this property to either true or false to indicate if you want to force a default.

If the property is set to true the first row of the selection will be only used for column heading display purposes and left alone during sorting which will then begin with the second line of the selection.

columnsort_sort_direction (default: "ascending")

The sorting can be defined to be "ascending" or "descending" by default.