From e8718c6ce5a314a6dd3609c4c3f0e1a35af804a6 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Thu, 27 Apr 2017 19:29:32 +0200 Subject: [PATCH] Docs for IPython completion which depends now on Jedi. --- README.rst | 6 +++++- docs/docs/usage.rst | 5 ++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 2f25c014..4f03ae08 100644 --- a/README.rst +++ b/README.rst @@ -45,6 +45,7 @@ Jedi can currently be used with the following editors/projects: - Gedit (gedi_) - wdb_ - Web Debugger - `Eric IDE`_ (Available as a plugin) +- `Ipython 6.0.0+ `_ and many more! @@ -122,8 +123,11 @@ The returned objects are very powerful and really all you might need. Autocompletion in your REPL (IPython, etc.) ------------------------------------------- +Starting with Ipython `6.0.0` Jedi is a dependency of IPython. Autocompletion +in IPython is therefore possible without additional configuration. + It's possible to have Jedi autocompletion in REPL modes - `example video `_. -This means that IPython and others are `supported +This means that in Python you can enable tab completion in a `REPL `_. diff --git a/docs/docs/usage.rst b/docs/docs/usage.rst index 502d43c0..99efb958 100644 --- a/docs/docs/usage.rst +++ b/docs/docs/usage.rst @@ -82,9 +82,12 @@ and many more! .. _repl-completion: -Tab completion in the Python Shell +Tab Completion in the Python Shell ---------------------------------- +Starting with Ipython `6.0.0` Jedi is a dependency of IPython. Autocompletion +in IPython is therefore possible without additional configuration. + There are two different options how you can use Jedi autocompletion in your Python interpreter. One with your custom ``$HOME/.pythonrc.py`` file and one that uses ``PYTHONSTARTUP``.