aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharles A. Roelli2018-03-08 20:45:47 +0100
committerCharles A. Roelli2018-03-08 20:45:47 +0100
commitf67a14efb6fc9c00bd69d3bdee509c999bc17cb1 (patch)
tree16c5295502427b38025c1317be43017325db7573
parent43548b51cb94c15af41b61b90172e05b9443a39b (diff)
downloademacs-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.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