1
0
forked from VimPlug/jedi

Document that using the REPL autocompletion is only available on Linux/Mac, fixes #1184

This commit is contained in:
Dave Halter
2018-09-30 13:36:05 +02:00
parent 6a2a2a9fa1
commit e1f9624bd4

View File

@@ -1,6 +1,8 @@
""" """
To use Jedi completion in Python interpreter, add the following in your shell To use Jedi completion in Python interpreter, add the following in your shell
setup (e.g., ``.bashrc``):: setup (e.g., ``.bashrc``). This works only on Linux/Mac, because readline is
not available on Windows. If you still want Jedi autocompletion in your REPL,
just use IPython instead::
export PYTHONSTARTUP="$(python -m jedi repl)" export PYTHONSTARTUP="$(python -m jedi repl)"