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
  • 10 years ago
  • 1 hour ago
  • 10 years ago

Installs

  • Total 57
  • Win 0
  • Mac 43
  • Linux 14
May 13 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
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 1 0 0 0 0 0 0 0 0 0 0 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 1 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).