Disable native completion for ipython (Bug#25067)
* lisp/progmodes/python.el: (python-shell-completion-native-disabled-interpreters): Add "ipython".
This commit is contained in:
parent
38fc456d27
commit
0ba9932d14
1 changed files with 4 additions and 2 deletions
|
@ -3255,8 +3255,10 @@ the full statement in the case of imports."
|
||||||
"Completion string code must work for (i)pdb.")
|
"Completion string code must work for (i)pdb.")
|
||||||
|
|
||||||
(defcustom python-shell-completion-native-disabled-interpreters
|
(defcustom python-shell-completion-native-disabled-interpreters
|
||||||
;; PyPy's readline cannot handle some escape sequences yet.
|
;; PyPy's readline cannot handle some escape sequences yet. Native
|
||||||
(list "pypy")
|
;; completion was found to be non-functional for IPython (see
|
||||||
|
;; Bug#25067).
|
||||||
|
(list "pypy" "ipython")
|
||||||
"List of disabled interpreters.
|
"List of disabled interpreters.
|
||||||
When a match is found, native completion is disabled."
|
When a match is found, native completion is disabled."
|
||||||
:version "25.1"
|
:version "25.1"
|
||||||
|
|
Loading…
Add table
Reference in a new issue