Ahmed Nuaman
Ahmed Nuaman

Reputation: 13221

SublimeText Codeintel Python library completion

Has anyone got any experience adding system Python libraries to Codeintel's index? It's great for completion of project files, but it'll be nice if it can also pick up, for example, PIL methods and Google App Engine libraries.

Upvotes: 3

Views: 794

Answers (1)

tenken
tenken

Reputation: 230

Globally or on a per-project basis you can define additional directories to scan for code completion. See the Readme here.

Since you're talking about python stuff you would supply pythonExtraPaths array values in a settings file:

"Python3": {
    "python": '/usr/bin/python3',
    "pythonExtraPaths": []
}

Upvotes: 0

Related Questions