aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 49b8a865efc..34bff0152ec 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -3703,6 +3703,8 @@ def __PYTHON_EL_native_completion_setup():
3703 readline.parse_and_bind('tab: complete') 3703 readline.parse_and_bind('tab: complete')
3704 # Require just one tab to send output. 3704 # Require just one tab to send output.
3705 readline.parse_and_bind('set show-all-if-ambiguous on') 3705 readline.parse_and_bind('set show-all-if-ambiguous on')
3706 # Avoid replacing common prefix with ellipsis.
3707 readline.parse_and_bind('set completion-prefix-display-length 0')
3706 3708
3707 print ('python.el: native completion setup loaded') 3709 print ('python.el: native completion setup loaded')
3708 except: 3710 except: