diff options
| author | Eli Zaretskii | 2022-03-22 19:56:06 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2022-03-22 19:56:06 +0200 |
| commit | f2047fdca4f42cf0af568e1d62f286a91cce6d35 (patch) | |
| tree | 63747a05afbcd34a913badef451ad2b25ec1d961 /etc | |
| parent | da3af500ad490db5cded8dfca7f2ec713b52629c (diff) | |
| download | emacs-f2047fdca4f42cf0af568e1d62f286a91cce6d35.tar.gz emacs-f2047fdca4f42cf0af568e1d62f286a91cce6d35.zip | |
Fix documentation of the new completion-related features
* etc/NEWS:
* lisp/minibuffer.el (completion-auto-help):
* doc/lispref/text.texi (Special Properties):
* doc/emacs/mini.texi (Completion Options): Fix wording of
recently added documentation and customization options.
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/NEWS | 27 |
1 files changed, 14 insertions, 13 deletions
| @@ -579,28 +579,29 @@ alphabetical (the default), or a custom sort function. | |||
| 579 | 579 | ||
| 580 | +++ | 580 | +++ |
| 581 | *** New values for the 'completion-auto-help' user option. | 581 | *** New values for the 'completion-auto-help' user option. |
| 582 | There are two new values to control the way "*Completions*" behave after | 582 | There are two new values to control the way the "*Completions*" buffer |
| 583 | a 'TAB' if completion is not unique. 'always' updates or shows | 583 | behaves after pressing a 'TAB' if completion is not unique. The value |
| 584 | the "*Completions*" buffer after any attempt to complete. 'visual' is | 584 | 'always' updates or shows the "*Completions*" buffer after any attempt |
| 585 | like 'always', but only update the completions if they are already | 585 | to complete. The value 'visual' is like 'always', but only updates |
| 586 | visible. The default value 't' always hides the completion buffer after | 586 | the completions if they are already visible. The default value 't' |
| 587 | some completion is made. | 587 | always hides the completion buffer after some completion is made. |
| 588 | 588 | ||
| 589 | +++ | 589 | +++ |
| 590 | *** New user option 'completions-max-height'. | 590 | *** New user option 'completions-max-height'. |
| 591 | This option limits the height of the "*Completions*" buffer. | 591 | This option limits the height of the "*Completions*" buffer. |
| 592 | 592 | ||
| 593 | +++ | 593 | +++ |
| 594 | *** New user option 'completions-header-format' | 594 | *** New user option 'completions-header-format'. |
| 595 | This is a string to control the message to show before completions. | 595 | This is a string to control the heading line to show in the |
| 596 | It may contain a "%s" to show the total number of completions. If nil no | 596 | "*Completions*" buffer before the list of completions. |
| 597 | completions are shown. | 597 | If it contains "%s", that is replaced with the number of completions. |
| 598 | If nil, the heading line is not shown. | ||
| 598 | 599 | ||
| 599 | +++ | 600 | +++ |
| 600 | *** New user option 'completions-highlight-face'. | 601 | *** New user option 'completions-highlight-face'. |
| 601 | When this user option is a face name, it highlights the current | 602 | When this user option names a face, the current |
| 602 | candidate in the "*Completions*" buffer with that face. When the | 603 | candidate in the "*Completions*" buffer is highlighted with that face. |
| 603 | value is nil, no highlighting is performed at all. | 604 | The nil value disables this highlighting. |
| 604 | 605 | ||
| 605 | ** Isearch and Replace | 606 | ** Isearch and Replace |
| 606 | 607 | ||