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

Mr​Igor

by tisto ST3 MacLinux

Sublime Text 3 plugin for mr.igor.

Details

  • 2014.05.16.09.35.45
  • github.​com
  • github.​com
  • 11 years ago
  • 4 minutes ago
  • 11 years ago

Installs

  • Total 62
  • Win 0
  • Mac 47
  • Linux 15
Nov 21 Nov 20 Nov 19 Nov 18 Nov 17 Nov 16 Nov 15 Nov 14 Nov 13 Nov 12 Nov 11 Nov 10 Nov 9 Nov 8 Nov 7 Nov 6 Nov 5 Nov 4 Nov 3 Nov 2 Nov 1 Oct 31 Oct 30 Oct 29 Oct 28 Oct 27 Oct 26 Oct 25 Oct 24 Oct 23 Oct 22 Oct 21 Oct 20 Oct 19 Oct 18 Oct 17 Oct 16 Oct 15 Oct 14 Oct 13 Oct 12 Oct 11 Oct 10 Oct 9 Oct 8
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 0 0 0 0 0 0 0 0 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 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
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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Sublime Text 3 plugin for mr.igor

MrIgor is a Sublime Text 3 plugin for mr.igor.

mr.igor is an extension to pyflakes (a static code analysis tool for Python), that will learn where you import things from, and then automatically fill in missing imports from the place they are most often imported.

Prerequisits

Install mr.igor on your system:

$ pip install mr.igor

If you decide to install mr.igor in a different location (e.g. in a virtual environment), you have to tell the plugin where to find the igor bin file by selecting "Preferences" -> "Settings - User" in your Sublime Text menu and then add a line with the path to mr.igor, e.g.:

{
  "mrigor_path": "/home/timo/mrigor/bin/igor",
}

Installation

Using Package Control

  • Open Sublime Text Command Pallete and type "install" with no quotes
  • Select "Install Package" from the dropdown box
  • Type "MrIgor" with no quotes, select it and press <ENTER>

Using git

Go to your Sublime Text 3 packages directory and clone the repo:

git clone https://github.com/tisto/MrIgor

Usage

If you save a Python file in Sublime Text, "igor --reap" will be run to reap the contents of the file (adding the imports of that file to mr.igor's database).

Use CMD+SHIFT+I to run the current file through mr.igor to add missing imports.

Credits

mr.igor has been written by David Glick.

This package is based on the Sublime Text 2 'SublimeTextIgorPlugin' by Martin Aspeli (https://github.com/optilude/SublimeTextIgorPlugin).