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

isort

by asfaltboy ALL

A python import sort plugin(See https://github.com/timothycrosley/isort)

Details

  • 0.0.5
  • github.​com
  • 5 years ago
  • 1 hour ago
  • 11 years ago

Installs

  • Total 7K
  • Win 1K
  • Mac 3K
  • Linux 2K
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 Jun 12
Windows 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0
Mac 0 2 1 1 0 0 0 0 0 1 0 1 0 0 0 0 1 2 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 1 1 0 1 0 0 0 0 0 1
Linux 0 0 1 0 1 1 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 1 0 0 0 2 1 0 2 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Sublime text isort plugin

Small plugin that adds a command to sublime which replaces the contents with the output of the isort library. See below for more information about the library

Install

Package Control

Available in @wbond's package control. Just bring up the package control menu in sublime (default ctrl-shift-p), and enter Package Control: Install Package, search for isort.

Manual

Clone this repository from your Sublime packages directory:

Linux (untested)

$ cd ~/.config/sublime-text-2/Packages
$ git clone https://github.com/thijsdezoete/sublime-text-isort-plugin

OSX

$ cd "~/Library/Application Support/Sublime Text 2/Packages"
$ git clone https://github.com/thijsdezoete/sublime-text-isort-plugin

Windows

$ cd "%APPDATA%\Sublime Text 2"
$ git clone https://github.com/thijsdezoete/sublime-text-isort-plugin

isort your python imports for you so you don't have to.

isort is a Python utility / library to sort imports alphabetically, and automatically separated into sections. It provides a command line utility, Python library, Vim plugin, Sublime plugin, and Kate plugin to quickly sort all your imports.

for more details on isort see the isort repo.

Using isort

By default isort command is run on save. To change this behaviour set your user/project settings to include:

{
    "isort.sort_on_save": false,
}

You can also run the command manually by bringing up the command menu, and select “isort: sort imports” command.

Note that the command is only visible, and runs on autosave, when used on “python files”.