• Stars
    star
    267
  • Rank 152,734 (Top 4 %)
  • Language
    Python
  • License
    GNU General Publi...
  • Created over 11 years ago
  • Updated almost 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

ST3 only: A rewrite of SublimeRope for ST3, uses the Rope library to add python completions and refactoring to ST3

SublimePythonIDE

This plugin adds Python completions and some IDE-like functions to Sublime Text 3, through the use of the Rope library. It is a complete rewrite of SublimeRope for ST2. It should be a lot faster and easier to use than SublimeRope was.

In contrast to SublimeRope, it does use the built in Python only for UI-related functions, the completions and refactorings are calculated using the exact same python interpreter you use for your project (e.g. the one in your virtualenv). This eliminates a lot of small and big problems that SublimeRope had, e.g., not recognizing dict comprehensions because Python2.6 is used in ST2, or not recognizing some of your libraries because you did not configure all the paths etc.. Everything your projects interpreter sees, should be visible to SublimePython -> easier configuration.

I also added a lot caching throughout the underlying Rope library which improved completion performance by several orders of magnitude. I hope no functionality breaks because of this ;-)

Configuration

Python location

The only necessary configuration is pointing SublimePythonIDE at the correct Python interpreter to use. There are four mechanisms for detecting Python that are used in the following order:

  • Checking the option "python_interpreter" in project settings (see below)
  • Auto-detecting a virtual environment (in "venv" or $WORKON_HOME for virtualenvwrapper)
  • Reading a #! (shebang) line in the active file
  • Auto-detecting the system Python from $PATH

The option "python_interpreter" can be set in the projects settings (Project->Edit Project). Example:

{
    "folders": [
        {
           "path": "XYZ"
        },
        {
            "path": "ABC"
        }
    ],
    "settings": {
        "python_interpreter": "/path/to/some/virtualenv/bin/python"
    }
}

This is also the way to select a virtualenv (point it to the interpreter in the venv) and thus get the completions/definitions for you project working.

To suppress the "Could not find Python dialog", save the following setting:

"suppress_python_not_found_error": false,

Imports location

SublimePythonIDE will also look up imports relative to the project root directory (the top directory of your project).

In cases where the project directory is outside of your root python module, you may optionally set a custom source root directory in the project settings:

{
    "folders": [
        {
           "path": "XYZ"
        },
    ],
    "settings": {
        "src_root": "XYZ/THE_ACTUAL_SRC"
        "python_interpreter": "/path/to/some/virtualenv/bin/python",
    }
}

See Packages/SublimePythonIDE/SublimePython.sublime-settings for other options. As with all ST packages, copy this file into your Packages/User folder and editing the copy there.

Copyright (C) 2013 Julian Eberius

License:

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

Have a look at "LICENSE.txt" file for more information.

EXTERNAL LICENSES

This project uses code from other open source projects (Rope) which may include licenses of their own.

More Repositories

1

SublimeRope

ST2 only, use SublimePythonIDE with ST3: Adds Python completions and some IDE-like functions to Sublime Text 2, through the use of the Rope library
Python
250
star
2

Textmate-Minimap

A minimap plugin for TextMate.
Objective-C
180
star
3

Subclim

Eclipse Java completion and refactoring powers in Sublime Text 2 using Eclim
Python
117
star
4

RopeMate.tmbundle

Integrates the Python refactoring/completion framework Rope with Textmate
Python
23
star
5

k811fn

Configure the Logitech K811's function keys on Windows
C
13
star
6

dwtc-extractor

Extraction code used to create the Dresden Web Table Corpus
Java
13
star
7

Eclim.tmbundle

Brings Eclipse Java completion powers to TextMate by integrating with Eclim.
Python
12
star
8

dwtc-tools

Dresden Web Table Corpus Java library
Java
11
star
9

track-o-bot-ios

Track-o-Botty: Simple iOS app for Track-o-Bot - https://appsto.re/i6hW6zx
Swift
8
star
10

osxwindows

A python module for manipulating windows on OSX using the accessibility API.
Objective-C
6
star
11

qsx

Auto-tiling, chrome-less window manager for OSX, written in Python
Python
5
star
12

Synonyms.tmbundle

Textmate bundle that uses the OSX dictionary to provide synonyms as autocompletion proposals.
Python
3
star
13

sublime-ipython-integration

Python
3
star
14

REA

Source code for the paper "Top-k Entity Augmentation using Consistent Set Covering"
Scala
3
star
15

Chrome-NextLink

Adds a keyboard shortcut for rel="next" links to Chrome
2
star
16

DrillBeyond

Implementation of the paper "DrillBeyond: Processing Multi-Result Open World SQL Queries"
C
1
star
17

matchtools

Java library for instance and schema matching
Java
1
star