diff options
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 692d915f8f8..227be64b5b0 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -4549,6 +4549,9 @@ def __PYTHON_EL_native_completion_setup(): | |||
| 4549 | readline.parse_and_bind('tab: complete') | 4549 | readline.parse_and_bind('tab: complete') |
| 4550 | # Require just one tab to send output. | 4550 | # Require just one tab to send output. |
| 4551 | readline.parse_and_bind('set show-all-if-ambiguous on') | 4551 | readline.parse_and_bind('set show-all-if-ambiguous on') |
| 4552 | # Avoid ANSI escape characters in the output | ||
| 4553 | readline.parse_and_bind('set colored-completion-prefix off') | ||
| 4554 | readline.parse_and_bind('set colored-stats off') | ||
| 4552 | # Avoid replacing common prefix with ellipsis. | 4555 | # Avoid replacing common prefix with ellipsis. |
| 4553 | readline.parse_and_bind('set completion-prefix-display-length 0') | 4556 | readline.parse_and_bind('set completion-prefix-display-length 0') |
| 4554 | 4557 | ||