Skip to content
This repository has been archived by the owner on Apr 1, 2020. It is now read-only.

0.0.26

Compare
Choose a tag to compare
@zrzka zrzka released this 21 Sep 06:05
· 243 commits to master since this release
  • Jump to definition fixes
  • Jedi - ignore definitions if there's no path & line number
  • blackmamba.project trashed (replaced with Jedi, thanks to @JonB)
  • Jump to definition shortcut synced with Xcode (Control Command J)
  • Find usages added (script/find_usages.py & Control Command U)
  • Show documentation (script/show_documentation.py & Control Command ?)
    • Displayed as success annotation on the current line
    • You can clear annotation with Cmd Shift K (already there)
  • All these three featues does jedi now. Jedi is not thread safe and
    because I had not lot of time to investigate how and when is the Jedi
    used by Pythonista, I decided to disable these three features by
    default. To enable them, just set general.jedi to True when
    passing configuration to the main.

BTW this . notation is a shortcut for documentation and you have to pass
it as dictionary:

config = {
    'general': {
        'jedi': True
    }
}

blackmamba.main(config)