* `blackmamba.script` introduced and it does contain following scripts
* `action_quickly.py`, `analyze.py`, `clear_annotations.py`, `close_all_tabs_except_current_one.py`,
`drag_provider.py`, `jump_to_definition.py`, `jump_to_line.py`, `new_file.py`, `new_tab.py`,
`open_quickly.py`, `outline_quickly.py`, `run_quickly.py`, `run_unit_tests.py`, `search_dash.py`,
`toggle_comments.py`
* These scripts can be used in the wrench icon (action)
* These scripts are binded to keyboard shortcuts, whenever you run it via wrench icon
or via keyboard shortcut, esame script is executed
* It's still required to call `blackmamba.main` from within
`~/Documents/site-packages-3/pythonista_startup.py` file to properly configure it
(even without external keyboard)
* Drag Provider uses Pythonista title bar instead of custom title to allow users to close the
the dialog without external keyboard
* Unit tests (`tester.py`) moved from `blackmamba.experimental` to `blackmamba`
* `ide.run_script` and `ide.run_action` has new args named `delay`, which defaults to `None`
* Run Quickly & Action Quickly runs scripts with 1.0s delay and that's because
both these actions are binded to scripts in the new script folder and if there's no
delay, nothing happens if these scripts are Python 3 (basically it runs script from script,
which doesn't ended yet)
* Fixed 20 (Pythonista appex error)
* Allow to run `main`
* Do not check compatibility, updates
* Do not register keyboard shortcuts
* `blackmamba.system.Pythonista` decorator has new arg `appex`
* Defaults to `None`
* `appex=True` - run decorated function if it's running as application extension
* `appex=False` - run decorated function if it's not running as application extension
* `appex=None` - run in both case, just don't check
* `blackmamba.key_command.register_key_command` is decorated with `Pythonista(appex=False)`
to avoid shortcut registration if it's running as application extension
* Page Up (`Ctrl Up`) and Page Down (`Ctrl Down`)
* It jumps up / down by 40 lines by [default](https://github.com/zrzka/blackmamba/blob/master/blackmamba/config.pyL17)
* You can modify this value via `general.page_line_count`
* See [395](https://github.com/omz/Pythonista-Issues/issues/395), it's recommended
to hit Left / Right arrow key after page up / down to workaround iOS / Pythonista bug