diff options
| author | Charles A. Roelli | 2018-03-08 20:45:47 +0100 |
|---|---|---|
| committer | Charles A. Roelli | 2018-03-08 20:45:47 +0100 |
| commit | f67a14efb6fc9c00bd69d3bdee509c999bc17cb1 (patch) | |
| tree | 16c5295502427b38025c1317be43017325db7573 | |
| parent | 43548b51cb94c15af41b61b90172e05b9443a39b (diff) | |
| download | emacs-f67a14efb6fc9c00bd69d3bdee509c999bc17cb1.tar.gz emacs-f67a14efb6fc9c00bd69d3bdee509c999bc17cb1.zip | |
Add to "Completion Commands" Info node
* doc/emacs/mini.texi (Completion Commands): Mention other keys
for 'next-completion' and 'previous-completion', and explain 'q'
and 'z' which are relatively new additions.
| -rw-r--r-- | doc/emacs/mini.texi | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/doc/emacs/mini.texi b/doc/emacs/mini.texi index 579697f47bd..9e650ba55f7 100644 --- a/doc/emacs/mini.texi +++ b/doc/emacs/mini.texi | |||
| @@ -366,14 +366,26 @@ While in the completion list buffer, this chooses the completion at | |||
| 366 | point (@code{choose-completion}). | 366 | point (@code{choose-completion}). |
| 367 | 367 | ||
| 368 | @findex next-completion | 368 | @findex next-completion |
| 369 | @item @key{TAB} | ||
| 369 | @item @key{RIGHT} | 370 | @item @key{RIGHT} |
| 370 | While in the completion list buffer, this moves point to the following | 371 | While in the completion list buffer, these keys move point to the |
| 371 | completion alternative (@code{next-completion}). | 372 | following completion alternative (@code{next-completion}). |
| 372 | 373 | ||
| 373 | @findex previous-completion | 374 | @findex previous-completion |
| 375 | @item @key{S-TAB} | ||
| 374 | @item @key{LEFT} | 376 | @item @key{LEFT} |
| 375 | While in the completion list buffer, this moves point to the previous | 377 | While in the completion list buffer, these keys move point to the |
| 376 | completion alternative (@code{previous-completion}). | 378 | previous completion alternative (@code{previous-completion}). |
| 379 | |||
| 380 | @findex quit-window | ||
| 381 | @item @kbd{q} | ||
| 382 | While in the completion list buffer, this quits the window showing it | ||
| 383 | and selects the window showing the minibuffer (@code{quit-window}). | ||
| 384 | |||
| 385 | @findex kill-current-buffer | ||
| 386 | @item @kbd{z} | ||
| 387 | While in the completion list buffer, kill it and delete the window | ||
| 388 | showing it (@code{kill-current-buffer}). | ||
| 377 | @end table | 389 | @end table |
| 378 | 390 | ||
| 379 | @node Completion Exit | 391 | @node Completion Exit |