diff options
| author | Noam Postavsky | 2017-02-07 21:13:17 -0500 |
|---|---|---|
| committer | Noam Postavsky | 2017-02-07 21:18:19 -0500 |
| commit | 0ba9932d1446e91fcc96f1d3303fac5ca5029d71 (patch) | |
| tree | 9731d9e28f1ac237bd22662b7c2f0b60454aecc5 /lisp/progmodes/python.el | |
| parent | 38fc456d27973843685a1e51ea992641303e2145 (diff) | |
| download | emacs-0ba9932d1446e91fcc96f1d3303fac5ca5029d71.tar.gz emacs-0ba9932d1446e91fcc96f1d3303fac5ca5029d71.zip | |
Disable native completion for ipython (Bug#25067)
* lisp/progmodes/python.el:
(python-shell-completion-native-disabled-interpreters): Add "ipython".
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 306402d8e3b..2e08ab4f15c 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -3255,8 +3255,10 @@ the full statement in the case of imports." | |||
| 3255 | "Completion string code must work for (i)pdb.") | 3255 | "Completion string code must work for (i)pdb.") |
| 3256 | 3256 | ||
| 3257 | (defcustom python-shell-completion-native-disabled-interpreters | 3257 | (defcustom python-shell-completion-native-disabled-interpreters |
| 3258 | ;; PyPy's readline cannot handle some escape sequences yet. | 3258 | ;; PyPy's readline cannot handle some escape sequences yet. Native |
| 3259 | (list "pypy") | 3259 | ;; completion was found to be non-functional for IPython (see |
| 3260 | ;; Bug#25067). | ||
| 3261 | (list "pypy" "ipython") | ||
| 3260 | "List of disabled interpreters. | 3262 | "List of disabled interpreters. |
| 3261 | When a match is found, native completion is disabled." | 3263 | When a match is found, native completion is disabled." |
| 3262 | :version "25.1" | 3264 | :version "25.1" |