diff options
| author | Eli Zaretskii | 2021-10-31 03:58:55 -0400 |
|---|---|---|
| committer | Eli Zaretskii | 2021-10-31 03:58:55 -0400 |
| commit | d9b309cda8b946e8bf9760f66070a83e0fa37e77 (patch) | |
| tree | b001bbff837a5c1ff080c2dec799ace371c0a6ca /lisp/progmodes/python.el | |
| parent | 54b8ec4e6fb1eeac049e7bd68372e78c180fe8e4 (diff) | |
| parent | 335a660b4b725eb76abfa5d80295ac5c7be5d205 (diff) | |
| download | emacs-d9b309cda8b946e8bf9760f66070a83e0fa37e77.tar.gz emacs-d9b309cda8b946e8bf9760f66070a83e0fa37e77.zip | |
Merge from origin/emacs-28
335a660b4b Fix display glitches with side-by-side windows on TTY frames
4a96f32def Avoid replacing common prefix with ellipsis
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 2 |
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: |