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 745
  • Linux 493
May 12 May 11 May 10 May 9 May 8 May 7 May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29
Windows 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 2 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0
Mac 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 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 0 0 0 0 1 0 0 2 1 1 0 0 1 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.