Skip to content

Sublime

Gui Talarico edited this page Sep 18, 2017 · 6 revisions

Sublime Setup

  1. Make sure the Jedi Package is installed.
  2. Make sure autocompletion is working for your default python packages:

sublime-native

  1. Configure Sublime Jedi's settings

This tells the autocomplete engine where to "crawl" to find the stub files.

If you have other libraries you would like to add like rpw, you cab add multiple paths using a semicolon. C:\Path\To\ironpython-stubs\stubs.min ; C:\Path\To\revitpythonwrapper.lib

{
    "python_package_paths": ["C:\\Path\\To\\ironpython-stubs\\stubs.min"],
    "sublime_completions_visibility": "default",
    "auto_complete_function_params": "required",
    "logging_level": "warn",
}

Troubleshooting

  1. Make sure the path to the stubs is correct
  2. Check your console, see if there are any errors
  3. Remove the index to force a rebuild

Images

sublime-demo sublime-settings

Clone this wiki locally