Column Sort
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 762
- Linux 501
Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | Aug 28 | Aug 27 | Aug 26 | Aug 25 | Aug 24 | Aug 23 | Aug 22 | Aug 21 | Aug 20 | Aug 19 | Aug 18 | Aug 17 | Aug 16 | Aug 15 | Aug 14 | Aug 13 | Aug 12 | Aug 11 | Aug 10 | Aug 9 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | Aug 4 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 1 | 1 | 1 | 0 |
Linux | 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 | 0 | 0 | 0 | 0 | 0 | 0 | 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
- 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.
- Open a file with column-separated content, or produce or paste suchlike text in a buffer.
- Select the lines you want to include to be sorted.
- 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.
- 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.
- 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.