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
  • 47 minutes ago
  • 10 years ago

Installs

  • Total 57
  • Win 0
  • Mac 43
  • Linux 14
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 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6
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 1 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
Linux 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 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).