Disable by default and add NEWS entry to the new completion behavior

* etc/NEWS: Announce 'completion-auto-select'.
* lisp/simple.el (completion-auto-select): Default to nil.
This commit is contained in:
Po Lu 2021-12-22 18:37:31 +08:00
parent 70266929c3
commit 4154a85d81
2 changed files with 5 additions and 1 deletions

View file

@ -301,6 +301,10 @@ case keys.
This command increases (or decreases) the number of empty lines before
point.
** The *Completions* buffer can now be automatically selected
To enable this behavior, customize the option 'completion-auto-select'
to t.
---
*** Improved mouse behavior with auto-scrolling modes.
When clicking inside the 'scroll-margin' or 'hscroll-margin' region

View file

@ -9259,7 +9259,7 @@ Called from `temp-buffer-show-hook'."
:version "22.1"
:group 'completion)
(defcustom completion-auto-select t
(defcustom completion-auto-select nil
"Non-nil means to automatically select the completions buffer."
:type 'boolean
:version "29.1"