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

Indent Respectful Sort

by Mustafa Nural ALL

Sublime Text plugin that provides sort functionality while respecting the indented block structure

Labels sort, indent

Details

Installs

  • Total 1K
  • Win 667
  • Mac 397
  • Linux 239
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 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
Windows 0 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 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 3 0 0 1 0 0 0 0 0 0 0 0 1 0 0 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 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

About

Indent Respectful Sort is a Sublime Text plugin that provides sort functionality while respecting the block structure defined by indendation.

You may find this plugin useful when you have a consistently indented (all tabs or all 4 spaces etc.) file and would like to sort logical blocks (methods, classes or unordered lists) while maintaining inner structure of the blocks.

Note that this approach would only work in cases where indentation is not only present for readability but also for dictating the structure.

Usage

Using predefined commands

Open command palette by typing Ctrl + Shift + P and start typing IndentRespectulSort to use one of the predefined sort options.

As an example, running Indent Respectful Sort: Indented by 2 Spaces & Max Depth = 2 command on the below snippet

First Level Item 5
  Second Level Item 2
  Second Level Item 3
  Second Level Item 1
    Third Level Item 3
    Third Level Item 1
    Third Level Item 2
First Level Item 2
  Second Level Item 2
    Third Level Item 2
    Third Level Item 1
  Second Level Item 1

would yield the following.

First Level Item 2
  Second Level Item 1
  Second Level Item 2
    Third Level Item 2
    Third Level Item 1
First Level Item 5
  Second Level Item 1
    Third Level Item 3
    Third Level Item 1
    Third Level Item 2
  Second Level Item 2
  Second Level Item 3

Running a custom sort command

You may run IndentRespectfulSort directly from the console if you need custom sort options.

  1. Open the Python console by pressing Ctrl+` or by selecting View | Show Console in the menu.
  2. Type view.run_command("indent_respectful_sort") and hit Enter to run IndentRespectfulSort with default options (tab delimited).
  3. You may specify arguments in the second parameter of the run command. Eg. view.run_command("indent_respectful_sort", {"indent": " ", "maxDepth": 2})

Args

  • maxDepth: Do not sort blocks beyond levels specified by this argument. (default: unlimited)
  • onlyDepth: Only sort the blocks in the level specified by this argument. If onlyDepth is specified, then maxDepth is ignored. (default: None)
  • indent: Specify the indentation used in this file. (default: “\t”)

Adding a custom sort command to Command Palette

  1. Open your user command palette file. It will be located in your Packages directory, see: http://docs.sublimetext.info/en/latest/basic_concepts.html, at Packages/User/Default.sublime-commands.
  2. Follow instructions here for adding new items: http://docs.sublimetext.info/en/latest/reference/command_palette.html

Example:

{
        "caption": "Alphabetize i18n",
        "command": "indent_respectful_sort",
        "args": {"onlyDepth": 3}
    }

Installation

Using Package Control

IndentRespectfulSort can easily be installed via Package Control.

  1. Make sure Package Control is installed. (See https://packagecontrol.io/installation).
  2. Press ctrl + shift + p(Win, Linux) or cmd + shift + p (OSX) to open command palette. Find and select Package Control : Install Package and hit Enter.
  3. In the newly opened panel, start typing IndentRespectfulSort and hit Enter after you have found and selected.
  4. Done!

Manual Installation

  1. Create a folder named IndentRespectfulSort in the sublime packages folder.
  2. Simply extract the contents of this repository into the newly created IndentRespectfulSort folder.

Statistics

Available on the Package Control website. See https://packagecontrol.io/packages/Indent%20Respectful%20Sort

Bugs / Feature Requests

You may create a new issue at https://github.com/mvnural/sublime-indent-respectful-sort/issues