1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-21 06:55:39 +00:00

; * lisp/icomplete.el (icomplete-in-buffer): Doc fix (bug#73820).

This commit is contained in:
Eli Zaretskii 2024-10-16 08:32:02 +03:00
parent 569186c36e
commit c5eba443ae

View File

@ -139,9 +139,17 @@ See `icomplete-delay-completions-threshold'."
:type 'integer)
(defcustom icomplete-in-buffer nil
"If non-nil, also use Icomplete when completing in non-mini buffers.
"If non-nil, use Icomplete when completing in buffers other than minibuffer.
This affects commands like `completion-in-region', but not commands
that use their own completions setup."
that use their own completions setup.
If you would prefer to see only Icomplete's in-buffer display, but do
not want the \"*Completions*\" buffer to pop up in those cases, add
this advice to your init file:
(advice-add \\='completion-at-point
:after #\\='minibuffer-hide-completions)
"
:type 'boolean)
(defcustom icomplete-minibuffer-setup-hook nil