From e1f9624bd43ed600e8e552a1bdc78b966097599d Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sun, 30 Sep 2018 13:36:05 +0200 Subject: [PATCH] Document that using the REPL autocompletion is only available on Linux/Mac, fixes #1184 --- jedi/api/replstartup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jedi/api/replstartup.py b/jedi/api/replstartup.py index 4c44a626..3ac84708 100644 --- a/jedi/api/replstartup.py +++ b/jedi/api/replstartup.py @@ -1,6 +1,8 @@ """ 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)"