; * lisp/minibuffer.el (completions-header-format): Doc fix.

This commit is contained in:
Eli Zaretskii 2023-05-27 20:20:33 +03:00
parent 5d844e129a
commit 756244c696

View file

@ -2025,11 +2025,14 @@ completions."
(defcustom completions-header-format (defcustom completions-header-format
(propertize "%s possible completions:\n" 'face 'shadow) (propertize "%s possible completions:\n" 'face 'shadow)
"Format of completions header. "If non-nil, the format string for completions heading line.
It may contain one %s to show the total count of completions. The heading line is inserted before the completions, and is intended
When nil, no header is shown." to summarize the completions.
:type '(choice (const :tag "No header" nil) The format string may include one %s, which will be replaced with
(string :tag "Header format string")) the total count of possible completions.
If this is nil, no heading line will be shown."
:type '(choice (const :tag "No heading line" nil)
(string :tag "Format string for heading line"))
:version "29.1") :version "29.1")
(defun completion--insert-strings (strings &optional group-fun) (defun completion--insert-strings (strings &optional group-fun)