Last active
April 30, 2021 15:19
-
-
Save justinfx/5458967 to your computer and use it in GitHub Desktop.
Example SublimeJEDI settings - https://github.com/svaiter/SublimeJEDI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
// 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" | |
] | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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