From: Charles A. Roelli Date: Thu, 8 Mar 2018 19:45:47 +0000 (+0100) Subject: Add to "Completion Commands" Info node X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=de2b09f7aefd9c933473de9362aaaf5434794156;p=emacs.git 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. --- 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 point (@code{choose-completion}). @findex next-completion +@item @key{TAB} @item @key{RIGHT} -While in the completion list buffer, this moves point to the following -completion alternative (@code{next-completion}). +While in the completion list buffer, these keys move point to the +following completion alternative (@code{next-completion}). @findex previous-completion +@item @key{S-TAB} @item @key{LEFT} -While in the completion list buffer, this moves point to the previous -completion alternative (@code{previous-completion}). +While in the completion list buffer, these keys move point to the +previous completion alternative (@code{previous-completion}). + +@findex quit-window +@item @kbd{q} +While in the completion list buffer, this quits the window showing it +and selects the window showing the minibuffer (@code{quit-window}). + +@findex kill-current-buffer +@item @kbd{z} +While in the completion list buffer, kill it and delete the window +showing it (@code{kill-current-buffer}). @end table @node Completion Exit