aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/emacs/mini.texi20
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
366point (@code{choose-completion}). 366point (@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}
370While in the completion list buffer, this moves point to the following 371While in the completion list buffer, these keys move point to the
371completion alternative (@code{next-completion}). 372following 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}
375While in the completion list buffer, this moves point to the previous 377While in the completion list buffer, these keys move point to the
376completion alternative (@code{previous-completion}). 378previous completion alternative (@code{previous-completion}).
379
380@findex quit-window
381@item @kbd{q}
382While in the completion list buffer, this quits the window showing it
383and selects the window showing the minibuffer (@code{quit-window}).
384
385@findex kill-current-buffer
386@item @kbd{z}
387While in the completion list buffer, kill it and delete the window
388showing it (@code{kill-current-buffer}).
377@end table 389@end table
378 390
379@node Completion Exit 391@node Completion Exit