Skip to content

Instantly share code, notes, and snippets.

@justinfx
Last active April 30, 2021 15:19
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save justinfx/5458967 to your computer and use it in GitHub Desktop.
Save justinfx/5458967 to your computer and use it in GitHub Desktop.
Example SublimeJEDI settings - https://github.com/svaiter/SublimeJEDI
// myproject.sublime-project
{
"folders":
[
{
"path": "/path/to/some/code"
}
],
// ...
"settings": {
"python_interpreter_path": "/path/to/my/bin/python",
"python_package_paths": [
// My virtualenv python project location
"/path/to/my/python/site-packages",
// My PySide installation lives here
"/usr/local/lib/python2.7/site-packages",
// Maya's python stubs
"/Applications/Autodesk/maya2013/devkit/devkit/other/pymel/extras/completion/py"
]
}
}
// Preferences.sublime-settings
{
// ...
"auto_complete_triggers": [{"selector": "source.python", "characters": "."}],
"auto_complete_selector": "-"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment