annotate lispref/minibuf.texi @ 65828:b4e648b8d37a

(Window Split Tree): New section describing new function window-split-tree function.
author Kim F. Storm <storm@cua.dk>
date Tue, 04 Oct 2005 14:26:20 +0000
parents 028c8f536edb
children 448890268bf7 aa89c814f853
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1 @c -*-texinfo-*-
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2 @c This is part of the GNU Emacs Lisp Reference Manual.
64889
e836425ee789 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 64859
diff changeset
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2001, 2002,
e836425ee789 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 64859
diff changeset
4 @c 2003, 2004, 2005 Free Software Foundation, Inc.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5 @c See the file elisp.texi for copying conditions.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6 @setfilename ../info/minibuf
7337
cd57cd335fff *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 7221
diff changeset
7 @node Minibuffers, Command Loop, Read and Print, Top
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8 @chapter Minibuffers
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 @cindex arguments, reading
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10 @cindex complex arguments
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 @cindex minibuffer
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12
64843
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
13 A @dfn{minibuffer} is a special buffer that Emacs commands use to
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
14 read arguments more complicated than the single numeric prefix
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
15 argument. These arguments include file names, buffer names, and
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
16 command names (as in @kbd{M-x}). The minibuffer is displayed on the
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
17 bottom line of the frame, in the same place as the echo area
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
18 (@pxref{The Echo Area}), but only while it is in use for reading an
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
19 argument.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21 @menu
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22 * Intro to Minibuffers:: Basic information about minibuffers.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23 * Text from Minibuffer:: How to read a straight text string.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
24 * Object from Minibuffer:: How to read a Lisp object or expression.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
25 * Minibuffer History:: Recording previous minibuffer inputs
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
26 so the user can reuse them.
55925
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
27 * Initial Input:: Specifying initial contents for the minibuffer.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
28 * Completion:: How to invoke and customize completion.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
29 * Yes-or-No Queries:: Asking a question with a simple answer.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
30 * Multiple Queries:: Asking a series of similar questions.
23147
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
31 * Reading a Password:: Reading a password from the terminal.
64843
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
32 * Minibuffer Commands:: Commands used as key bindings in minibuffers.
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
33 * Minibuffer Contents:: How such commands access the minibuffer text.
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
34 * Minibuffer Windows:: Operating on the special minibuffer windows.
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
35 * Recursive Mini:: Whether recursive entry to minibuffer is allowed.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
36 * Minibuffer Misc:: Various customization hooks and variables.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37 @end menu
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
39 @node Intro to Minibuffers
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40 @section Introduction to Minibuffers
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
42 In most ways, a minibuffer is a normal Emacs buffer. Most operations
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
43 @emph{within} a buffer, such as editing commands, work normally in a
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
44 minibuffer. However, many operations for managing buffers do not apply
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
45 to minibuffers. The name of a minibuffer always has the form @w{@samp{
46915
5bae22b90bf5 Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 44275
diff changeset
46 *Minibuf-@var{number}*}}, and it cannot be changed. Minibuffers are
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
47 displayed only in special windows used only for minibuffers; these
22252
40089afa2b1d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 22138
diff changeset
48 windows always appear at the bottom of a frame. (Sometimes frames have
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
49 no minibuffer window, and sometimes a special kind of frame contains
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
50 nothing but a minibuffer window; see @ref{Minibuffers and Frames}.)
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
51
25751
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 23147
diff changeset
52 The text in the minibuffer always starts with the @dfn{prompt string},
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 23147
diff changeset
53 the text that was specified by the program that is using the minibuffer
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 23147
diff changeset
54 to tell the user what sort of input to type. This text is marked
26696
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
55 read-only so you won't accidentally delete or change it. It is also
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
56 marked as a field (@pxref{Fields}), so that certain motion functions,
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
57 including @code{beginning-of-line}, @code{forward-word},
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
58 @code{forward-sentence}, and @code{forward-paragraph}, stop at the
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
59 boundary between the prompt and the actual text. (In older Emacs
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
60 versions, the prompt was displayed using a special mechanism and was not
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
61 part of the buffer contents.)
25751
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 23147
diff changeset
62
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 23147
diff changeset
63 The minibuffer's window is normally a single line; it grows
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 23147
diff changeset
64 automatically if necessary if the contents require more space. You can
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 23147
diff changeset
65 explicitly resize it temporarily with the window sizing commands; it
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 23147
diff changeset
66 reverts to its normal size when the minibuffer is exited. You can
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 23147
diff changeset
67 resize it permanently by using the window sizing commands in the frame's
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 23147
diff changeset
68 other window, when the minibuffer is not active. If the frame contains
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 23147
diff changeset
69 just a minibuffer, you can change the minibuffer's size by changing the
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 23147
diff changeset
70 frame's size.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
71
52485
7fc901c75a7d (Intro to Minibuffers): Explain that the minibuffer
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
72 Use of the minibuffer reads input events, and that alters the values
7fc901c75a7d (Intro to Minibuffers): Explain that the minibuffer
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
73 of variables such as @code{this-command} and @code{last-command}
7fc901c75a7d (Intro to Minibuffers): Explain that the minibuffer
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
74 (@pxref{Command Loop Info}). Your program should bind them around the
7fc901c75a7d (Intro to Minibuffers): Explain that the minibuffer
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
75 code that uses the minibuffer, if you do not want that to change them.
7fc901c75a7d (Intro to Minibuffers): Explain that the minibuffer
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
76
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
77 If a command uses a minibuffer while there is an active minibuffer,
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
78 this is called a @dfn{recursive minibuffer}. The first minibuffer is
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
79 named @w{@samp{ *Minibuf-0*}}. Recursive minibuffers are named by
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
80 incrementing the number at the end of the name. (The names begin with a
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
81 space so that they won't show up in normal buffer lists.) Of several
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
82 recursive minibuffers, the innermost (or most recently entered) is the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
83 active minibuffer. We usually call this ``the'' minibuffer. You can
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
84 permit or forbid recursive minibuffers by setting the variable
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
85 @code{enable-recursive-minibuffers} or by putting properties of that
64859
4e8cce76fcf3 (Intro to Minibuffers): Update pxref for previous change in minibuf.texi.
Luc Teirlinck <teirllm@auburn.edu>
parents: 64843
diff changeset
86 name on command symbols (@pxref{Recursive Mini}).
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
87
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
88 Like other buffers, a minibuffer may use any of several local keymaps
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
89 (@pxref{Keymaps}); these contain various exit commands and in some cases
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
90 completion commands (@pxref{Completion}).
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
91
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
92 @itemize @bullet
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
93 @item
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
94 @code{minibuffer-local-map} is for ordinary input (no completion).
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
95
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
96 @item
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
97 @code{minibuffer-local-ns-map} is similar, except that @key{SPC} exits
51914
9cd313749c97 (Basic Completion): Add lazy-completion-table.
Richard M. Stallman <rms@gnu.org>
parents: 51703
diff changeset
98 just like @key{RET}.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
99
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
100 @item
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
101 @code{minibuffer-local-completion-map} is for permissive completion.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
102
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
103 @item
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
104 @code{minibuffer-local-must-match-map} is for strict completion and
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
105 for cautious completion.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
106 @end itemize
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
107
26696
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
108 When Emacs is running in batch mode, any request to read from the
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
109 minibuffer actually reads a line from the standard input descriptor that
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
110 was supplied when Emacs was started.
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
111
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
112 @node Text from Minibuffer
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
113 @section Reading Text Strings with the Minibuffer
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
114
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
115 Most often, the minibuffer is used to read text as a string. It can
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
116 also be used to read a Lisp object in textual form. The most basic
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
117 primitive for minibuffer input is @code{read-from-minibuffer}; it can do
60042
114da1fc3775 (Text from Minibuffer): Minor clarification.
Richard M. Stallman <rms@gnu.org>
parents: 58360
diff changeset
118 either one. There are also specialized commands for reading
114da1fc3775 (Text from Minibuffer): Minor clarification.
Richard M. Stallman <rms@gnu.org>
parents: 58360
diff changeset
119 commands, variables, file names, etc. (@pxref{Completion}).
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
120
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
121 In most cases, you should not call minibuffer input functions in the
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
122 middle of a Lisp function. Instead, do all minibuffer input as part of
22138
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
123 reading the arguments for a command, in the @code{interactive}
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
124 specification. @xref{Defining Commands}.
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
125
58360
0e8e74522f85 (Text from Minibuffer): Document KEEP-ALL arg in read-from-minibuffer.
Richard M. Stallman <rms@gnu.org>
parents: 58280
diff changeset
126 @defun read-from-minibuffer prompt-string &optional initial-contents keymap read hist default inherit-input-method keep-all
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
127 This function is the most general way to get input through the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
128 minibuffer. By default, it accepts arbitrary text and returns it as a
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
129 string; however, if @var{read} is non-@code{nil}, then it uses
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
130 @code{read} to convert the text into a Lisp object (@pxref{Input
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
131 Functions}).
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
132
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
133 The first thing this function does is to activate a minibuffer and
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
134 display it with @var{prompt-string} as the prompt. This value must be a
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
135 string. Then the user can edit text in the minibuffer.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
136
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
137 When the user types a command to exit the minibuffer,
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
138 @code{read-from-minibuffer} constructs the return value from the text in
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
139 the minibuffer. Normally it returns a string containing that text.
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
140 However, if @var{read} is non-@code{nil}, @code{read-from-minibuffer}
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
141 reads the text and returns the resulting Lisp object, unevaluated.
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
142 (@xref{Input Functions}, for information about reading.)
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
143
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
144 The argument @var{default} specifies a default value to make available
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
145 through the history commands. It should be a string, or @code{nil}.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
146 If non-@code{nil}, the user can access it using
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
147 @code{next-history-element}, usually bound in the minibuffer to
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
148 @kbd{M-n}. If @var{read} is non-@code{nil}, then @var{default} is
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
149 also used as the input to @code{read}, if the user enters empty input.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
150 (If @var{read} is non-@code{nil} and @var{default} is @code{nil}, empty
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
151 input results in an @code{end-of-file} error.) However, in the usual
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
152 case (where @var{read} is @code{nil}), @code{read-from-minibuffer}
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
153 ignores @var{default} when the user enters empty input and returns an
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
154 empty string, @code{""}. In this respect, it is different from all
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
155 the other minibuffer input functions in this chapter.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
156
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
157 If @var{keymap} is non-@code{nil}, that keymap is the local keymap to
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
158 use in the minibuffer. If @var{keymap} is omitted or @code{nil}, the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
159 value of @code{minibuffer-local-map} is used as the keymap. Specifying
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
160 a keymap is the most important way to customize the minibuffer for
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
161 various applications such as completion.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
162
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
163 The argument @var{hist} specifies which history list variable to use
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
164 for saving the input and for history commands used in the minibuffer.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
165 It defaults to @code{minibuffer-history}. @xref{Minibuffer History}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
166
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
167 If the variable @code{minibuffer-allow-text-properties} is
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
168 non-@code{nil}, then the string which is returned includes whatever text
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
169 properties were present in the minibuffer. Otherwise all the text
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
170 properties are stripped when the value is returned.
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
171
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
172 If the argument @var{inherit-input-method} is non-@code{nil}, then the
22252
40089afa2b1d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 22138
diff changeset
173 minibuffer inherits the current input method (@pxref{Input Methods}) and
40089afa2b1d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 22138
diff changeset
174 the setting of @code{enable-multibyte-characters} (@pxref{Text
40089afa2b1d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 22138
diff changeset
175 Representations}) from whichever buffer was current before entering the
40089afa2b1d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 22138
diff changeset
176 minibuffer.
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
177
58360
0e8e74522f85 (Text from Minibuffer): Document KEEP-ALL arg in read-from-minibuffer.
Richard M. Stallman <rms@gnu.org>
parents: 58280
diff changeset
178 If @var{keep-all} is non-@code{nil}, even empty and duplicate inputs
0e8e74522f85 (Text from Minibuffer): Document KEEP-ALL arg in read-from-minibuffer.
Richard M. Stallman <rms@gnu.org>
parents: 58280
diff changeset
179 are added to the history list.
0e8e74522f85 (Text from Minibuffer): Document KEEP-ALL arg in read-from-minibuffer.
Richard M. Stallman <rms@gnu.org>
parents: 58280
diff changeset
180
55925
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
181 Use of @var{initial-contents} is mostly deprecated; we recommend using
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
182 a non-@code{nil} value only in conjunction with specifying a cons cell
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
183 for @var{hist}. @xref{Initial Input}.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
184 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
185
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
186 @defun read-string prompt &optional initial history default inherit-input-method
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
187 This function reads a string from the minibuffer and returns it. The
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
188 arguments @var{prompt}, @var{initial}, @var{history} and
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
189 @var{inherit-input-method} are used as in @code{read-from-minibuffer}.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
190 The keymap used is @code{minibuffer-local-map}.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
191
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
192 The optional argument @var{default} is used as in
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
193 @code{read-from-minibuffer}, except that, if non-@code{nil}, it also
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
194 specifies a default value to return if the user enters null input. As
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
195 in @code{read-from-minibuffer} it should be a string, or @code{nil},
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
196 which is equivalent to an empty string.
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
197
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
198 This function is a simplified interface to the
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
199 @code{read-from-minibuffer} function:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
200
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
201 @smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
202 @group
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
203 (read-string @var{prompt} @var{initial} @var{history} @var{default} @var{inherit})
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
204 @equiv{}
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
205 (let ((value
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
206 (read-from-minibuffer @var{prompt} @var{initial} nil nil
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
207 @var{history} @var{default} @var{inherit})))
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
208 (if (and (equal value "") @var{default})
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
209 @var{default}
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
210 value))
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
211 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
212 @end smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
213 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
214
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
215 @defvar minibuffer-allow-text-properties
22252
40089afa2b1d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 22138
diff changeset
216 If this variable is @code{nil}, then @code{read-from-minibuffer} strips
40089afa2b1d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 22138
diff changeset
217 all text properties from the minibuffer input before returning it.
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
218 This variable also affects @code{read-string}. However,
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
219 @code{read-no-blanks-input} (see below), as well as
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
220 @code{read-minibuffer} and related functions (@pxref{Object from
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
221 Minibuffer,, Reading Lisp Objects With the Minibuffer}), and all
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
222 functions that do minibuffer input with completion, discard text
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
223 properties unconditionally, regardless of the value of this variable.
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
224 @end defvar
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
225
56214
169058aadeda Change position of @anchor's. Add anchor.
Luc Teirlinck <teirllm@auburn.edu>
parents: 55925
diff changeset
226 @defvar minibuffer-local-map
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
227 @anchor{Definition of minibuffer-local-map}
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
228 This is the default local keymap for reading from the minibuffer. By
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
229 default, it makes the following bindings:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
230
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
231 @table @asis
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
232 @item @kbd{C-j}
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
233 @code{exit-minibuffer}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
234
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
235 @item @key{RET}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
236 @code{exit-minibuffer}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
237
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
238 @item @kbd{C-g}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
239 @code{abort-recursive-edit}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
240
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
241 @item @kbd{M-n}
60042
114da1fc3775 (Text from Minibuffer): Minor clarification.
Richard M. Stallman <rms@gnu.org>
parents: 58360
diff changeset
242 @itemx @key{DOWN}
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
243 @code{next-history-element}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
244
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
245 @item @kbd{M-p}
60042
114da1fc3775 (Text from Minibuffer): Minor clarification.
Richard M. Stallman <rms@gnu.org>
parents: 58360
diff changeset
246 @itemx @key{UP}
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
247 @code{previous-history-element}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
248
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
249 @item @kbd{M-s}
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
250 @code{next-matching-history-element}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
251
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
252 @item @kbd{M-r}
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
253 @code{previous-matching-history-element}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
254 @end table
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
255 @end defvar
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
256
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
257 @c In version 18, initial is required
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
258 @c Emacs 19 feature
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
259 @defun read-no-blanks-input prompt &optional initial inherit-input-method
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
260 This function reads a string from the minibuffer, but does not allow
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
261 whitespace characters as part of the input: instead, those characters
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
262 terminate the input. The arguments @var{prompt}, @var{initial}, and
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
263 @var{inherit-input-method} are used as in @code{read-from-minibuffer}.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
264
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
265 This is a simplified interface to the @code{read-from-minibuffer}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
266 function, and passes the value of the @code{minibuffer-local-ns-map}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
267 keymap as the @var{keymap} argument for that function. Since the keymap
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
268 @code{minibuffer-local-ns-map} does not rebind @kbd{C-q}, it @emph{is}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
269 possible to put a space into the string, by quoting it.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
270
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
271 This function discards text properties, regardless of the value of
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
272 @code{minibuffer-allow-text-properties}.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
273
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
274 @smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
275 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
276 (read-no-blanks-input @var{prompt} @var{initial})
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
277 @equiv{}
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
278 (let (minibuffer-allow-text-properties)
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
279 (read-from-minibuffer @var{prompt} @var{initial} minibuffer-local-ns-map))
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
280 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
281 @end smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
282 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
283
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
284 @defvar minibuffer-local-ns-map
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
285 This built-in variable is the keymap used as the minibuffer local keymap
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
286 in the function @code{read-no-blanks-input}. By default, it makes the
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
287 following bindings, in addition to those of @code{minibuffer-local-map}:
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
288
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
289 @table @asis
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
290 @item @key{SPC}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
291 @cindex @key{SPC} in minibuffer
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
292 @code{exit-minibuffer}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
293
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
294 @item @key{TAB}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
295 @cindex @key{TAB} in minibuffer
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
296 @code{exit-minibuffer}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
297
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
298 @item @kbd{?}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
299 @cindex @kbd{?} in minibuffer
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
300 @code{self-insert-and-exit}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
301 @end table
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
302 @end defvar
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
303
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
304 @node Object from Minibuffer
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
305 @section Reading Lisp Objects with the Minibuffer
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
306
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
307 This section describes functions for reading Lisp objects with the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
308 minibuffer.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
309
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
310 @defun read-minibuffer prompt &optional initial
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
311 This function reads a Lisp object using the minibuffer, and returns it
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
312 without evaluating it. The arguments @var{prompt} and @var{initial} are
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
313 used as in @code{read-from-minibuffer}.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
314
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
315 This is a simplified interface to the
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
316 @code{read-from-minibuffer} function:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
317
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
318 @smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
319 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
320 (read-minibuffer @var{prompt} @var{initial})
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
321 @equiv{}
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
322 (let (minibuffer-allow-text-properties)
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
323 (read-from-minibuffer @var{prompt} @var{initial} nil t))
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
324 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
325 @end smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
326
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
327 Here is an example in which we supply the string @code{"(testing)"} as
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
328 initial input:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
329
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
330 @smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
331 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
332 (read-minibuffer
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
333 "Enter an expression: " (format "%s" '(testing)))
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
334
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
335 ;; @r{Here is how the minibuffer is displayed:}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
336 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
337
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
338 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
339 ---------- Buffer: Minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
340 Enter an expression: (testing)@point{}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
341 ---------- Buffer: Minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
342 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
343 @end smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
344
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
345 @noindent
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
346 The user can type @key{RET} immediately to use the initial input as a
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
347 default, or can edit the input.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
348 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
349
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
350 @defun eval-minibuffer prompt &optional initial
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
351 This function reads a Lisp expression using the minibuffer, evaluates
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
352 it, then returns the result. The arguments @var{prompt} and
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
353 @var{initial} are used as in @code{read-from-minibuffer}.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
354
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
355 This function simply evaluates the result of a call to
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
356 @code{read-minibuffer}:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
357
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
358 @smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
359 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
360 (eval-minibuffer @var{prompt} @var{initial})
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
361 @equiv{}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
362 (eval (read-minibuffer @var{prompt} @var{initial}))
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
363 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
364 @end smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
365 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
366
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
367 @defun edit-and-eval-command prompt form
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
368 This function reads a Lisp expression in the minibuffer, and then
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
369 evaluates it. The difference between this command and
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
370 @code{eval-minibuffer} is that here the initial @var{form} is not
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
371 optional and it is treated as a Lisp object to be converted to printed
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
372 representation rather than as a string of text. It is printed with
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
373 @code{prin1}, so if it is a string, double-quote characters (@samp{"})
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
374 appear in the initial text. @xref{Output Functions}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
375
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
376 The first thing @code{edit-and-eval-command} does is to activate the
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
377 minibuffer with @var{prompt} as the prompt. Then it inserts the printed
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
378 representation of @var{form} in the minibuffer, and lets the user edit it.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
379 When the user exits the minibuffer, the edited text is read with
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
380 @code{read} and then evaluated. The resulting value becomes the value
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
381 of @code{edit-and-eval-command}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
382
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
383 In the following example, we offer the user an expression with initial
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
384 text which is a valid form already:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
385
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
386 @smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
387 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
388 (edit-and-eval-command "Please edit: " '(forward-word 1))
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
389
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
390 ;; @r{After evaluation of the preceding expression,}
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
391 ;; @r{the following appears in the minibuffer:}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
392 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
393
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
394 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
395 ---------- Buffer: Minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
396 Please edit: (forward-word 1)@point{}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
397 ---------- Buffer: Minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
398 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
399 @end smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
400
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
401 @noindent
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
402 Typing @key{RET} right away would exit the minibuffer and evaluate the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
403 expression, thus moving point forward one word.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
404 @code{edit-and-eval-command} returns @code{nil} in this example.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
405 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
406
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
407 @node Minibuffer History
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
408 @section Minibuffer History
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
409 @cindex minibuffer history
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
410 @cindex history list
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
411
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
412 A @dfn{minibuffer history list} records previous minibuffer inputs so
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
413 the user can reuse them conveniently. A history list is actually a
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
414 symbol, not a list; it is a variable whose value is a list of strings
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
415 (previous inputs), most recent first.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
416
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
417 There are many separate history lists, used for different kinds of
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
418 inputs. It's the Lisp programmer's job to specify the right history
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
419 list for each use of the minibuffer.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
420
63582
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
421 You specify the history list with the optional @var{hist} argument
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
422 to either @code{read-from-minibuffer} or @code{completing-read}. Here
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
423 are the possible values for it:
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
424
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
425 @table @asis
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
426 @item @var{variable}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
427 Use @var{variable} (a symbol) as the history list.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
428
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
429 @item (@var{variable} . @var{startpos})
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
430 Use @var{variable} (a symbol) as the history list, and assume that the
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
431 initial history position is @var{startpos} (a nonnegative integer).
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
432
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
433 Specifying 0 for @var{startpos} is equivalent to just specifying the
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
434 symbol @var{variable}. @code{previous-history-element} will display
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
435 the most recent element of the history list in the minibuffer. If you
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
436 specify a positive @var{startpos}, the minibuffer history functions
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
437 behave as if @code{(elt @var{variable} (1- @var{STARTPOS}))} were the
55925
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
438 history element currently shown in the minibuffer.
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
439
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
440 For consistency, you should also specify that element of the history
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
441 as the initial minibuffer contents, using the @var{initial} argument
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
442 to the minibuffer input function (@pxref{Initial Input}).
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
443 @end table
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
444
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
445 If you don't specify @var{hist}, then the default history list
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
446 @code{minibuffer-history} is used. For other standard history lists,
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
447 see below. You can also create your own history list variable; just
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
448 initialize it to @code{nil} before the first use.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
449
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
450 Both @code{read-from-minibuffer} and @code{completing-read} add new
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
451 elements to the history list automatically, and provide commands to
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
452 allow the user to reuse items on the list. The only thing your program
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
453 needs to do to use a history list is to initialize it and to pass its
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
454 name to the input functions when you wish. But it is safe to modify the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
455 list by hand when the minibuffer input functions are not using it.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
456
48730
e7f0249cfca8 Document history-length.
Richard M. Stallman <rms@gnu.org>
parents: 46915
diff changeset
457 Emacs functions that add a new element to a history list can also
e7f0249cfca8 Document history-length.
Richard M. Stallman <rms@gnu.org>
parents: 46915
diff changeset
458 delete old elements if the list gets too long. The variable
e7f0249cfca8 Document history-length.
Richard M. Stallman <rms@gnu.org>
parents: 46915
diff changeset
459 @code{history-length} specifies the maximum length for most history
e7f0249cfca8 Document history-length.
Richard M. Stallman <rms@gnu.org>
parents: 46915
diff changeset
460 lists. To specify a different maximum length for a particular history
e7f0249cfca8 Document history-length.
Richard M. Stallman <rms@gnu.org>
parents: 46915
diff changeset
461 list, put the length in the @code{history-length} property of the
57017
9f99ae07c452 (Minibuffer History): Add `history-delete-duplicates'.
Juri Linkov <juri@jurta.org>
parents: 56606
diff changeset
462 history list symbol. The variable @code{history-delete-duplicates}
9f99ae07c452 (Minibuffer History): Add `history-delete-duplicates'.
Juri Linkov <juri@jurta.org>
parents: 56606
diff changeset
463 specifies whether to delete duplicates in history.
48730
e7f0249cfca8 Document history-length.
Richard M. Stallman <rms@gnu.org>
parents: 46915
diff changeset
464
e7f0249cfca8 Document history-length.
Richard M. Stallman <rms@gnu.org>
parents: 46915
diff changeset
465 @defvar history-length
e7f0249cfca8 Document history-length.
Richard M. Stallman <rms@gnu.org>
parents: 46915
diff changeset
466 The value of this variable specifies the maximum length for all
e7f0249cfca8 Document history-length.
Richard M. Stallman <rms@gnu.org>
parents: 46915
diff changeset
467 history lists that don't specify their own maximum lengths. If the
e7f0249cfca8 Document history-length.
Richard M. Stallman <rms@gnu.org>
parents: 46915
diff changeset
468 value is @code{t}, that means there no maximum (don't delete old
e7f0249cfca8 Document history-length.
Richard M. Stallman <rms@gnu.org>
parents: 46915
diff changeset
469 elements).
e7f0249cfca8 Document history-length.
Richard M. Stallman <rms@gnu.org>
parents: 46915
diff changeset
470 @end defvar
e7f0249cfca8 Document history-length.
Richard M. Stallman <rms@gnu.org>
parents: 46915
diff changeset
471
57017
9f99ae07c452 (Minibuffer History): Add `history-delete-duplicates'.
Juri Linkov <juri@jurta.org>
parents: 56606
diff changeset
472 @defvar history-delete-duplicates
9f99ae07c452 (Minibuffer History): Add `history-delete-duplicates'.
Juri Linkov <juri@jurta.org>
parents: 56606
diff changeset
473 If the value of this variable is @code{t}, that means when adding a
9f99ae07c452 (Minibuffer History): Add `history-delete-duplicates'.
Juri Linkov <juri@jurta.org>
parents: 56606
diff changeset
474 new history element, all previous identical elements are deleted.
9f99ae07c452 (Minibuffer History): Add `history-delete-duplicates'.
Juri Linkov <juri@jurta.org>
parents: 56606
diff changeset
475 @end defvar
9f99ae07c452 (Minibuffer History): Add `history-delete-duplicates'.
Juri Linkov <juri@jurta.org>
parents: 56606
diff changeset
476
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
477 Here are some of the standard minibuffer history list variables:
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
478
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
479 @defvar minibuffer-history
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
480 The default history list for minibuffer history input.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
481 @end defvar
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
482
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
483 @defvar query-replace-history
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
484 A history list for arguments to @code{query-replace} (and similar
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
485 arguments to other commands).
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
486 @end defvar
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
487
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
488 @defvar file-name-history
22138
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
489 A history list for file-name arguments.
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
490 @end defvar
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
491
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
492 @defvar buffer-name-history
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
493 A history list for buffer-name arguments.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
494 @end defvar
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
495
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
496 @defvar regexp-history
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
497 A history list for regular expression arguments.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
498 @end defvar
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
499
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
500 @defvar extended-command-history
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
501 A history list for arguments that are names of extended commands.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
502 @end defvar
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
503
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
504 @defvar shell-command-history
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
505 A history list for arguments that are shell commands.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
506 @end defvar
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
507
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
508 @defvar read-expression-history
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
509 A history list for arguments that are Lisp expressions to evaluate.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
510 @end defvar
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
511
55925
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
512 @node Initial Input
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
513 @section Initial Input
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
514
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
515 Several of the functions for minibuffer input have an argument called
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
516 @var{initial} or @var{initial-contents}. This is a mostly-deprecated
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
517 feature for specifiying that the minibuffer should start out with
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
518 certain text, instead of empty as usual.
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
519
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
520 If @var{initial} is a string, the minibuffer starts out containing the
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
521 text of the string, with point at the end, when the user starts to
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
522 edit the text. If the user simply types @key{RET} to exit the
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
523 minibuffer, it will use the initial input string to determine the
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
524 value to return.
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
525
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
526 @strong{We discourage use of a non-@code{nil} value for
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
527 @var{initial}}, because initial input is an intrusive interface.
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
528 History lists and default values provide a much more convenient method
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
529 to offer useful default inputs to the user.
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
530
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
531 There is just one situation where you should specify a string for an
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
532 @var{initial} argument. This is when you specify a cons cell for the
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
533 @var{hist} or @var{history} argument. @xref{Minibuffer History}.
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
534
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
535 @var{initial} can also be a cons cell of the form @code{(@var{string}
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
536 . @var{position})}. This means to insert @var{string} in the
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
537 minibuffer but put point at @var{position} within the string's text.
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
538
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
539 As a historical accident, @var{position} was implemented
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
540 inconsistently in different functions. In @code{completing-read},
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
541 @var{position}'s value is interpreted as origin-zero; that is, a value
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
542 of 0 means the beginning of the string, 1 means after the first
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
543 character, etc. In @code{read-minibuffer}, and the other
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
544 non-completion minibuffer input functions that support this argument,
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
545 1 means the beginning of the string 2 means after the first character,
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
546 etc.
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
547
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
548 Use of a cons cell as the value for @var{initial} arguments is
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
549 deprecated in user code.
56214
169058aadeda Change position of @anchor's. Add anchor.
Luc Teirlinck <teirllm@auburn.edu>
parents: 55925
diff changeset
550
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
551 @node Completion
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
552 @section Completion
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
553 @cindex completion
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
554
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
555 @dfn{Completion} is a feature that fills in the rest of a name
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
556 starting from an abbreviation for it. Completion works by comparing the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
557 user's input against a list of valid names and determining how much of
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
558 the name is determined uniquely by what the user has typed. For
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
559 example, when you type @kbd{C-x b} (@code{switch-to-buffer}) and then
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
560 type the first few letters of the name of the buffer to which you wish
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
561 to switch, and then type @key{TAB} (@code{minibuffer-complete}), Emacs
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
562 extends the name as far as it can.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
563
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
564 Standard Emacs commands offer completion for names of symbols, files,
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
565 buffers, and processes; with the functions in this section, you can
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
566 implement completion for other kinds of names.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
567
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
568 The @code{try-completion} function is the basic primitive for
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
569 completion: it returns the longest determined completion of a given
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
570 initial string, with a given set of strings to match against.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
571
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
572 The function @code{completing-read} provides a higher-level interface
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
573 for completion. A call to @code{completing-read} specifies how to
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
574 determine the list of valid names. The function then activates the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
575 minibuffer with a local keymap that binds a few keys to commands useful
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
576 for completion. Other functions provide convenient simple interfaces
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
577 for reading certain kinds of names with completion.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
578
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
579 @menu
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
580 * Basic Completion:: Low-level functions for completing strings.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
581 (These are too low level to use the minibuffer.)
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
582 * Minibuffer Completion:: Invoking the minibuffer with completion.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
583 * Completion Commands:: Minibuffer commands that do completion.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
584 * High-Level Completion:: Convenient special cases of completion
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
585 (reading buffer name, file name, etc.)
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
586 * Reading File Names:: Using completion to read file names.
51914
9cd313749c97 (Basic Completion): Add lazy-completion-table.
Richard M. Stallman <rms@gnu.org>
parents: 51703
diff changeset
587 * Programmed Completion:: Writing your own completion-function.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
588 @end menu
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
589
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
590 @node Basic Completion
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
591 @subsection Basic Completion Functions
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
592
63582
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
593 The completion functions @code{try-completion},
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
594 @code{all-completions} and @code{test-completion} have nothing in
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
595 themselves to do with minibuffers. We describe them in this chapter
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
596 so as to keep them near the higher-level completion features that do
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
597 use the minibuffer.
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
598
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
599 @defun try-completion string collection &optional predicate
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
600 This function returns the longest common substring of all possible
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
601 completions of @var{string} in @var{collection}. The value of
60211
31cb6f65b5d5 (Basic Completion): Allow symbols in addition to
Kim F. Storm <storm@cua.dk>
parents: 60042
diff changeset
602 @var{collection} must be a list of strings or symbols, an alist, an
31cb6f65b5d5 (Basic Completion): Allow symbols in addition to
Kim F. Storm <storm@cua.dk>
parents: 60042
diff changeset
603 obarray, a hash table, or a function that implements a virtual set of
31cb6f65b5d5 (Basic Completion): Allow symbols in addition to
Kim F. Storm <storm@cua.dk>
parents: 60042
diff changeset
604 strings (see below).
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
605
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
606 Completion compares @var{string} against each of the permissible
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
607 completions specified by @var{collection}; if the beginning of the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
608 permissible completion equals @var{string}, it matches. If no permissible
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
609 completions match, @code{try-completion} returns @code{nil}. If only
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
610 one permissible completion matches, and the match is exact, then
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
611 @code{try-completion} returns @code{t}. Otherwise, the value is the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
612 longest initial sequence common to all the permissible completions that
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
613 match.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
614
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
615 If @var{collection} is an alist (@pxref{Association Lists}), the
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
616 permissible completions are the elements of the alist that are either
60211
31cb6f65b5d5 (Basic Completion): Allow symbols in addition to
Kim F. Storm <storm@cua.dk>
parents: 60042
diff changeset
617 strings, symbols, or conses whose @sc{car} is a string or symbol.
31cb6f65b5d5 (Basic Completion): Allow symbols in addition to
Kim F. Storm <storm@cua.dk>
parents: 60042
diff changeset
618 Symbols are converted to strings using @code{symbol-name}.
31cb6f65b5d5 (Basic Completion): Allow symbols in addition to
Kim F. Storm <storm@cua.dk>
parents: 60042
diff changeset
619 Other elements of the alist are ignored. (Remember that in Emacs Lisp,
31cb6f65b5d5 (Basic Completion): Allow symbols in addition to
Kim F. Storm <storm@cua.dk>
parents: 60042
diff changeset
620 the elements of alists do not @emph{have} to be conses.) As all
31cb6f65b5d5 (Basic Completion): Allow symbols in addition to
Kim F. Storm <storm@cua.dk>
parents: 60042
diff changeset
621 elements of the alist can be strings, this case actually includes
31cb6f65b5d5 (Basic Completion): Allow symbols in addition to
Kim F. Storm <storm@cua.dk>
parents: 60042
diff changeset
622 lists of strings or symbols, even though we usually do not think of
31cb6f65b5d5 (Basic Completion): Allow symbols in addition to
Kim F. Storm <storm@cua.dk>
parents: 60042
diff changeset
623 such lists as alists.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
624
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
625 @cindex obarray in completion
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
626 If @var{collection} is an obarray (@pxref{Creating Symbols}), the names
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
627 of all symbols in the obarray form the set of permissible completions. The
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
628 global variable @code{obarray} holds an obarray containing the names of
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
629 all interned Lisp symbols.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
630
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
631 Note that the only valid way to make a new obarray is to create it
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
632 empty and then add symbols to it one by one using @code{intern}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
633 Also, you cannot intern a given symbol in more than one obarray.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
634
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
635 If @var{collection} is a hash table, then the keys that are strings
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
636 are the possible completions. Other keys are ignored.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
637
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
638 You can also use a symbol that is a function as @var{collection}. Then
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
639 the function is solely responsible for performing completion;
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
640 @code{try-completion} returns whatever this function returns. The
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
641 function is called with three arguments: @var{string}, @var{predicate}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
642 and @code{nil}. (The reason for the third argument is so that the same
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
643 function can be used in @code{all-completions} and do the appropriate
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
644 thing in either case.) @xref{Programmed Completion}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
645
51989
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
646 If the argument @var{predicate} is non-@code{nil}, then it must be a
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
647 function of one argument, unless @var{collection} is a hash table, in
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
648 which case it should be a function of two arguments. It is used to
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
649 test each possible match, and the match is accepted only if
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
650 @var{predicate} returns non-@code{nil}. The argument given to
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
651 @var{predicate} is either a string or a cons cell (the @sc{car} of
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
652 which is a string) from the alist, or a symbol (@emph{not} a symbol
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
653 name) from the obarray. If @var{collection} is a hash table,
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
654 @var{predicate} is called with two arguments, the string key and the
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
655 associated value.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
656
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
657 In addition, to be acceptable, a completion must also match all the
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
658 regular expressions in @code{completion-regexp-list}. (Unless
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
659 @var{collection} is a function, in which case that function has to
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
660 handle @code{completion-regexp-list} itself.)
51989
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
661
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
662 In the first of the following examples, the string @samp{foo} is
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
663 matched by three of the alist @sc{car}s. All of the matches begin with
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
664 the characters @samp{fooba}, so that is the result. In the second
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
665 example, there is only one possible match, and it is exact, so the value
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
666 is @code{t}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
667
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
668 @smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
669 @group
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
670 (try-completion
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
671 "foo"
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
672 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4)))
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
673 @result{} "fooba"
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
674 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
675
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
676 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
677 (try-completion "foo" '(("barfoo" 2) ("foo" 3)))
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
678 @result{} t
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
679 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
680 @end smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
681
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
682 In the following example, numerous symbols begin with the characters
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
683 @samp{forw}, and all of them begin with the word @samp{forward}. In
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
684 most of the symbols, this is followed with a @samp{-}, but not in all,
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
685 so no more than @samp{forward} can be completed.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
686
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
687 @smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
688 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
689 (try-completion "forw" obarray)
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
690 @result{} "forward"
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
691 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
692 @end smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
693
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
694 Finally, in the following example, only two of the three possible
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
695 matches pass the predicate @code{test} (the string @samp{foobaz} is
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
696 too short). Both of those begin with the string @samp{foobar}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
697
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
698 @smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
699 @group
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
700 (defun test (s)
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
701 (> (length (car s)) 6))
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
702 @result{} test
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
703 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
704 @group
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
705 (try-completion
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
706 "foo"
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
707 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
708 'test)
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
709 @result{} "foobar"
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
710 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
711 @end smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
712 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
713
12067
73dc8205d259 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 8753
diff changeset
714 @defun all-completions string collection &optional predicate nospace
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
715 This function returns a list of all possible completions of
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
716 @var{string}. The arguments to this function (aside from
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
717 @var{nospace}) are the same as those of @code{try-completion}. Also,
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
718 this function uses @code{completion-regexp-list} in the same way that
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
719 @code{try-completion} does. The optional argument @var{nospace} only
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
720 matters if @var{string} is the empty string. In that case, if
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
721 @var{nospace} is non-@code{nil}, completions that start with a space
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
722 are ignored.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
723
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
724 If @var{collection} is a function, it is called with three arguments:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
725 @var{string}, @var{predicate} and @code{t}; then @code{all-completions}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
726 returns whatever the function returns. @xref{Programmed Completion}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
727
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
728 Here is an example, using the function @code{test} shown in the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
729 example for @code{try-completion}:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
730
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
731 @smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
732 @group
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
733 (defun test (s)
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
734 (> (length (car s)) 6))
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
735 @result{} test
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
736 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
737
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
738 @group
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
739 (all-completions
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
740 "foo"
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
741 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
742 'test)
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
743 @result{} ("foobar1" "foobar2")
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
744 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
745 @end smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
746 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
747
56214
169058aadeda Change position of @anchor's. Add anchor.
Luc Teirlinck <teirllm@auburn.edu>
parents: 55925
diff changeset
748 @defun test-completion string collection &optional predicate
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
749 @anchor{Definition of test-completion}
51989
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
750 This function returns non-@code{nil} if @var{string} is a valid
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
751 completion possibility specified by @var{collection} and
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
752 @var{predicate}. The arguments are the same as in
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
753 @code{try-completion}. For instance, if @var{collection} is a list of
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
754 strings, this is true if @var{string} appears in the list and
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
755 @var{predicate} is satisfied.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
756
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
757 @code{test-completion} uses @code{completion-regexp-list} in the same
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
758 way that @code{try-completion} does.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
759
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
760 If @var{predicate} is non-@code{nil} and if @var{collection} contains
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
761 several strings that are equal to each other, as determined by
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
762 @code{compare-strings} according to @code{completion-ignore-case},
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
763 then @var{predicate} should accept either all or none of them.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
764 Otherwise, the return value of @code{test-completion} is essentially
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
765 unpredictable.
51989
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
766
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
767 If @var{collection} is a function, it is called with three arguments,
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
768 the values @var{string}, @var{predicate} and @code{lambda}; whatever
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
769 it returns, @code{test-completion} returns in turn.
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
770 @end defun
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
771
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
772 @defvar completion-ignore-case
51989
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
773 If the value of this variable is non-@code{nil}, Emacs does not
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
774 consider case significant in completion.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
775 @end defvar
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
776
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
777 @defvar completion-regexp-list
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
778 This is a list of regular expressions. The completion functions only
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
779 consider a completion acceptable if it matches all regular expressions
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
780 in this list, with @code{case-fold-search} (@pxref{Searching and Case})
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
781 bound to the value of @code{completion-ignore-case}.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
782 @end defvar
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
783
51914
9cd313749c97 (Basic Completion): Add lazy-completion-table.
Richard M. Stallman <rms@gnu.org>
parents: 51703
diff changeset
784 @defmac lazy-completion-table var fun &rest args
9cd313749c97 (Basic Completion): Add lazy-completion-table.
Richard M. Stallman <rms@gnu.org>
parents: 51703
diff changeset
785 This macro provides a way to initialize the variable @var{var} as a
51989
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
786 collection for completion in a lazy way, not computing its actual
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
787 contents until they are first needed. You use this macro to produce a
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
788 value that you store in @var{var}. The actual computation of the
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
789 proper value is done the first time you do completion using @var{var}.
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
790 It is done by calling @var{fun} with the arguments @var{args}. The
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
791 value @var{fun} returns becomes the permanent value of @var{var}.
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
792
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
793 Here are two examples of use:
51914
9cd313749c97 (Basic Completion): Add lazy-completion-table.
Richard M. Stallman <rms@gnu.org>
parents: 51703
diff changeset
794
63582
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
795 @smallexample
51914
9cd313749c97 (Basic Completion): Add lazy-completion-table.
Richard M. Stallman <rms@gnu.org>
parents: 51703
diff changeset
796 (defvar foo (lazy-completion-table foo make-my-alist 'global))
51989
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
797
51914
9cd313749c97 (Basic Completion): Add lazy-completion-table.
Richard M. Stallman <rms@gnu.org>
parents: 51703
diff changeset
798 (make-local-variable 'bar)
9cd313749c97 (Basic Completion): Add lazy-completion-table.
Richard M. Stallman <rms@gnu.org>
parents: 51703
diff changeset
799 (setq bar (lazy-completion-table foo make-my-alist 'local)
63582
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
800 @end smallexample
51914
9cd313749c97 (Basic Completion): Add lazy-completion-table.
Richard M. Stallman <rms@gnu.org>
parents: 51703
diff changeset
801 @end defmac
9cd313749c97 (Basic Completion): Add lazy-completion-table.
Richard M. Stallman <rms@gnu.org>
parents: 51703
diff changeset
802
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
803 @node Minibuffer Completion
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
804 @subsection Completion and the Minibuffer
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
805
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
806 This section describes the basic interface for reading from the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
807 minibuffer with completion.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
808
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
809 @defun completing-read prompt collection &optional predicate require-match initial hist default inherit-input-method
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
810 This function reads a string in the minibuffer, assisting the user by
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
811 providing completion. It activates the minibuffer with prompt
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
812 @var{prompt}, which must be a string.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
813
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
814 The actual completion is done by passing @var{collection} and
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
815 @var{predicate} to the function @code{try-completion}. This happens
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
816 in certain commands bound in the local keymaps used for completion.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
817 Some of these commands also call @code{test-completion}. Thus, if
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
818 @var{predicate} is non-@code{nil}, it should be compatible with
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
819 @var{collection} and @code{completion-ignore-case}. @xref{Definition
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
820 of test-completion}.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
821
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
822 If @var{require-match} is @code{nil}, the exit commands work regardless
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
823 of the input in the minibuffer. If @var{require-match} is @code{t}, the
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
824 usual minibuffer exit commands won't exit unless the input completes to
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
825 an element of @var{collection}. If @var{require-match} is neither
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
826 @code{nil} nor @code{t}, then the exit commands won't exit unless the
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
827 input already in the buffer matches an element of @var{collection}.
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
828
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
829 However, empty input is always permitted, regardless of the value of
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
830 @var{require-match}; in that case, @code{completing-read} returns
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
831 @var{default}, or @code{""}, if @var{default} is @code{nil}. The
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
832 value of @var{default} (if non-@code{nil}) is also available to the
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
833 user through the history commands.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
834
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
835 The function @code{completing-read} uses
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
836 @code{minibuffer-local-completion-map} as the keymap if
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
837 @var{require-match} is @code{nil}, and uses
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
838 @code{minibuffer-local-must-match-map} if @var{require-match} is
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
839 non-@code{nil}. @xref{Completion Commands}.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
840
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
841 The argument @var{hist} specifies which history list variable to use for
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
842 saving the input and for minibuffer history commands. It defaults to
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
843 @code{minibuffer-history}. @xref{Minibuffer History}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
844
55925
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
845 The argument @var{initial} is mostly deprecated; we recommend using a
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
846 non-@code{nil} value only in conjunction with specifying a cons cell
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
847 for @var{hist}. @xref{Initial Input}. For default input, use
b1e16cd7f843 (Minibuffer Completion): For INITIAL arg,
Richard M. Stallman <rms@gnu.org>
parents: 54327
diff changeset
848 @var{default} instead.
38158
a137fb27df08 Deprecate use of the INITIAL argument for completing-read.
Richard M. Stallman <rms@gnu.org>
parents: 27189
diff changeset
849
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
850 If the argument @var{inherit-input-method} is non-@code{nil}, then the
22252
40089afa2b1d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 22138
diff changeset
851 minibuffer inherits the current input method (@pxref{Input
22138
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
852 Methods}) and the setting of @code{enable-multibyte-characters}
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
853 (@pxref{Text Representations}) from whichever buffer was current before
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
854 entering the minibuffer.
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
855
58280
08330213d737 (Minibuffer Completion): When ignoring case,
Richard M. Stallman <rms@gnu.org>
parents: 57790
diff changeset
856 If the built-in variable @code{completion-ignore-case} is
08330213d737 (Minibuffer Completion): When ignoring case,
Richard M. Stallman <rms@gnu.org>
parents: 57790
diff changeset
857 non-@code{nil}, completion ignores case when comparing the input
08330213d737 (Minibuffer Completion): When ignoring case,
Richard M. Stallman <rms@gnu.org>
parents: 57790
diff changeset
858 against the possible matches. @xref{Basic Completion}. In this mode
08330213d737 (Minibuffer Completion): When ignoring case,
Richard M. Stallman <rms@gnu.org>
parents: 57790
diff changeset
859 of operation, @var{predicate} must also ignore case, or you will get
08330213d737 (Minibuffer Completion): When ignoring case,
Richard M. Stallman <rms@gnu.org>
parents: 57790
diff changeset
860 surprising results.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
861
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
862 Here's an example of using @code{completing-read}:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
863
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
864 @smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
865 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
866 (completing-read
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
867 "Complete a foo: "
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
868 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
869 nil t "fo")
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
870 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
871
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
872 @group
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
873 ;; @r{After evaluation of the preceding expression,}
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
874 ;; @r{the following appears in the minibuffer:}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
875
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
876 ---------- Buffer: Minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
877 Complete a foo: fo@point{}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
878 ---------- Buffer: Minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
879 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
880 @end smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
881
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
882 @noindent
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
883 If the user then types @kbd{@key{DEL} @key{DEL} b @key{RET}},
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
884 @code{completing-read} returns @code{barfoo}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
885
63582
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
886 The @code{completing-read} function binds variables to pass
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
887 information to the commands that actually do completion.
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
888 They are described in the following section.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
889 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
890
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
891 @node Completion Commands
25751
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 23147
diff changeset
892 @subsection Minibuffer Commands that Do Completion
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
893
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
894 This section describes the keymaps, commands and user options used
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
895 in the minibuffer to do completion. The description refers to the
53930
5ef587160656 *** empty log message ***
Luc Teirlinck <teirllm@auburn.edu>
parents: 53801
diff changeset
896 situation when Partial Completion mode is disabled (as it is by
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
897 default). When enabled, this minor mode uses its own alternatives to
54327
1f35da88bdd8 (Completion Commands): Add xref to Emacs manual for Partial Completion mode.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53930
diff changeset
898 some of the commands described below. @xref{Completion Options,,,
1f35da88bdd8 (Completion Commands): Add xref to Emacs manual for Partial Completion mode.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53930
diff changeset
899 emacs, The GNU Emacs Manual}, for a short description of Partial
1f35da88bdd8 (Completion Commands): Add xref to Emacs manual for Partial Completion mode.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53930
diff changeset
900 Completion mode.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
901
63582
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
902 @defvar minibuffer-completion-table
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
903 The value of this variable is the collection used for completion in
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
904 the minibuffer. This is the global variable that contains what
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
905 @code{completing-read} passes to @code{try-completion}. It is used by
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
906 minibuffer completion commands such as @code{minibuffer-complete-word}.
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
907 @end defvar
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
908
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
909 @defvar minibuffer-completion-predicate
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
910 This variable's value is the predicate that @code{completing-read}
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
911 passes to @code{try-completion}. The variable is also used by the other
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
912 minibuffer completion functions.
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
913 @end defvar
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
914
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
915 @defvar minibuffer-completion-confirm
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
916 When the value of this variable is non-@code{nil}, Emacs asks for
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
917 confirmation of a completion before exiting the minibuffer.
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
918 @code{completing-read} binds this variable, and the function
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
919 @code{minibuffer-complete-and-exit} checks the value before exiting.
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
920 @end defvar
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
921
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
922 @deffn Command minibuffer-complete-word
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
923 This function completes the minibuffer contents by at most a single
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
924 word. Even if the minibuffer contents have only one completion,
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
925 @code{minibuffer-complete-word} does not add any characters beyond the
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
926 first character that is not a word constituent. @xref{Syntax Tables}.
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
927 @end deffn
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
928
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
929 @deffn Command minibuffer-complete
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
930 This function completes the minibuffer contents as far as possible.
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
931 @end deffn
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
932
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
933 @deffn Command minibuffer-complete-and-exit
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
934 This function completes the minibuffer contents, and exits if
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
935 confirmation is not required, i.e., if
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
936 @code{minibuffer-completion-confirm} is @code{nil}. If confirmation
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
937 @emph{is} required, it is given by repeating this command
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
938 immediately---the command is programmed to work without confirmation
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
939 when run twice in succession.
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
940 @end deffn
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
941
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
942 @deffn Command minibuffer-completion-help
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
943 This function creates a list of the possible completions of the
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
944 current minibuffer contents. It works by calling @code{all-completions}
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
945 using the value of the variable @code{minibuffer-completion-table} as
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
946 the @var{collection} argument, and the value of
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
947 @code{minibuffer-completion-predicate} as the @var{predicate} argument.
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
948 The list of completions is displayed as text in a buffer named
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
949 @samp{*Completions*}.
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
950 @end deffn
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
951
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
952 @defun display-completion-list completions
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
953 This function displays @var{completions} to the stream in
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
954 @code{standard-output}, usually a buffer. (@xref{Read and Print}, for more
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
955 information about streams.) The argument @var{completions} is normally
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
956 a list of completions just returned by @code{all-completions}, but it
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
957 does not have to be. Each element may be a symbol or a string, either
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
958 of which is simply printed. It can also be a list of two strings,
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
959 which is printed as if the strings were concatenated. The first of
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
960 the two strings is the actual completion, the second string serves as
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
961 annotation.
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
962
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
963 This function is called by @code{minibuffer-completion-help}. The
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
964 most common way to use it is together with
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
965 @code{with-output-to-temp-buffer}, like this:
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
966
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
967 @example
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
968 (with-output-to-temp-buffer "*Completions*"
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
969 (display-completion-list
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
970 (all-completions (buffer-string) my-alist)))
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
971 @end example
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
972 @end defun
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
973
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
974 @defopt completion-auto-help
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
975 If this variable is non-@code{nil}, the completion commands
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
976 automatically display a list of possible completions whenever nothing
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
977 can be completed because the next character is not uniquely determined.
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
978 @end defopt
6dfe79da09ed Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents: 62595
diff changeset
979
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
980 @defvar minibuffer-local-completion-map
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
981 @code{completing-read} uses this value as the local keymap when an
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
982 exact match of one of the completions is not required. By default, this
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
983 keymap makes the following bindings:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
984
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
985 @table @asis
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
986 @item @kbd{?}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
987 @code{minibuffer-completion-help}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
988
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
989 @item @key{SPC}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
990 @code{minibuffer-complete-word}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
991
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
992 @item @key{TAB}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
993 @code{minibuffer-complete}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
994 @end table
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
995
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
996 @noindent
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
997 with other characters bound as in @code{minibuffer-local-map}
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
998 (@pxref{Definition of minibuffer-local-map}).
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
999 @end defvar
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1000
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1001 @defvar minibuffer-local-must-match-map
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1002 @code{completing-read} uses this value as the local keymap when an
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1003 exact match of one of the completions is required. Therefore, no keys
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1004 are bound to @code{exit-minibuffer}, the command that exits the
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1005 minibuffer unconditionally. By default, this keymap makes the following
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1006 bindings:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1007
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1008 @table @asis
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1009 @item @kbd{?}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1010 @code{minibuffer-completion-help}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1011
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1012 @item @key{SPC}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1013 @code{minibuffer-complete-word}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1014
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1015 @item @key{TAB}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1016 @code{minibuffer-complete}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1017
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
1018 @item @kbd{C-j}
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1019 @code{minibuffer-complete-and-exit}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1020
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1021 @item @key{RET}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1022 @code{minibuffer-complete-and-exit}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1023 @end table
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1024
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1025 @noindent
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1026 with other characters bound as in @code{minibuffer-local-map}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1027 @end defvar
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1028
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1029 @node High-Level Completion
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1030 @subsection High-Level Completion Functions
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1031
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1032 This section describes the higher-level convenient functions for
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1033 reading certain sorts of names with completion.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1034
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
1035 In most cases, you should not call these functions in the middle of a
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
1036 Lisp function. When possible, do all minibuffer input as part of
22138
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
1037 reading the arguments for a command, in the @code{interactive}
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
1038 specification. @xref{Defining Commands}.
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
1039
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1040 @defun read-buffer prompt &optional default existing
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1041 This function reads the name of a buffer and returns it as a string.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1042 The argument @var{default} is the default name to use, the value to
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1043 return if the user exits with an empty minibuffer. If non-@code{nil},
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1044 it should be a string or a buffer. It is mentioned in the prompt, but
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1045 is not inserted in the minibuffer as initial input.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1046
65758
028c8f536edb (High-Level Completion): Explain that the prompt
Romain Francoise <romain@orebokech.com>
parents: 64889
diff changeset
1047 The argument @var{prompt} should be a string ending with a colon and a
028c8f536edb (High-Level Completion): Explain that the prompt
Romain Francoise <romain@orebokech.com>
parents: 64889
diff changeset
1048 space. If @var{default} is non-@code{nil}, the function inserts it in
028c8f536edb (High-Level Completion): Explain that the prompt
Romain Francoise <romain@orebokech.com>
parents: 64889
diff changeset
1049 @var{prompt} before the colon to follow the convention for reading from
028c8f536edb (High-Level Completion): Explain that the prompt
Romain Francoise <romain@orebokech.com>
parents: 64889
diff changeset
1050 the minibuffer with a default value (@pxref{Programming Tips}).
028c8f536edb (High-Level Completion): Explain that the prompt
Romain Francoise <romain@orebokech.com>
parents: 64889
diff changeset
1051
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1052 If @var{existing} is non-@code{nil}, then the name specified must be
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1053 that of an existing buffer. The usual commands to exit the minibuffer
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1054 do not exit if the text is not valid, and @key{RET} does completion to
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1055 attempt to find a valid name. If @var{existing} is neither @code{nil}
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1056 nor @code{t}, confirmation is required after completion. (However,
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1057 @var{default} is not checked for validity; it is returned, whatever it
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1058 is, if the user exits with the minibuffer empty.)
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1059
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1060 In the following example, the user enters @samp{minibuffer.t}, and
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1061 then types @key{RET}. The argument @var{existing} is @code{t}, and the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1062 only buffer name starting with the given input is
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1063 @samp{minibuffer.texi}, so that name is the value.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1064
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1065 @example
65758
028c8f536edb (High-Level Completion): Explain that the prompt
Romain Francoise <romain@orebokech.com>
parents: 64889
diff changeset
1066 (read-buffer "Buffer name: " "foo" t)
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1067 @group
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
1068 ;; @r{After evaluation of the preceding expression,}
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1069 ;; @r{the following prompt appears,}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1070 ;; @r{with an empty minibuffer:}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1071 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1072
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1073 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1074 ---------- Buffer: Minibuffer ----------
65758
028c8f536edb (High-Level Completion): Explain that the prompt
Romain Francoise <romain@orebokech.com>
parents: 64889
diff changeset
1075 Buffer name (default foo): @point{}
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1076 ---------- Buffer: Minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1077 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1078
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1079 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1080 ;; @r{The user types @kbd{minibuffer.t @key{RET}}.}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1081 @result{} "minibuffer.texi"
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1082 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1083 @end example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1084 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1085
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
1086 @defvar read-buffer-function
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
1087 This variable specifies how to read buffer names. For example, if you
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
1088 set this variable to @code{iswitchb-read-buffer}, all Emacs commands
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
1089 that call @code{read-buffer} to read a buffer name will actually use the
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
1090 @code{iswitchb} package to read it.
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
1091 @end defvar
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
1092
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
1093 @defun read-command prompt &optional default
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1094 This function reads the name of a command and returns it as a Lisp
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1095 symbol. The argument @var{prompt} is used as in
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1096 @code{read-from-minibuffer}. Recall that a command is anything for
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1097 which @code{commandp} returns @code{t}, and a command name is a symbol
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1098 for which @code{commandp} returns @code{t}. @xref{Interactive Call}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1099
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
1100 The argument @var{default} specifies what to return if the user enters
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
1101 null input. It can be a symbol or a string; if it is a string,
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
1102 @code{read-command} interns it before returning it. If @var{default} is
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
1103 @code{nil}, that means no default has been specified; then if the user
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1104 enters null input, the return value is @code{(intern "")}, that is, a
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1105 symbol whose name is an empty string.
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
1106
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1107 @example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1108 (read-command "Command name? ")
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1109
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1110 @group
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
1111 ;; @r{After evaluation of the preceding expression,}
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1112 ;; @r{the following prompt appears with an empty minibuffer:}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1113 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1114
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1115 @group
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
1116 ---------- Buffer: Minibuffer ----------
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
1117 Command name?
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1118 ---------- Buffer: Minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1119 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1120 @end example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1121
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1122 @noindent
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1123 If the user types @kbd{forward-c @key{RET}}, then this function returns
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1124 @code{forward-char}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1125
16736
981e116b4ac6 Minor cleanups for overfull hboxes.
Richard M. Stallman <rms@gnu.org>
parents: 16238
diff changeset
1126 The @code{read-command} function is a simplified interface to
981e116b4ac6 Minor cleanups for overfull hboxes.
Richard M. Stallman <rms@gnu.org>
parents: 16238
diff changeset
1127 @code{completing-read}. It uses the variable @code{obarray} so as to
981e116b4ac6 Minor cleanups for overfull hboxes.
Richard M. Stallman <rms@gnu.org>
parents: 16238
diff changeset
1128 complete in the set of extant Lisp symbols, and it uses the
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1129 @code{commandp} predicate so as to accept only command names:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1130
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1131 @cindex @code{commandp} example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1132 @example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1133 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1134 (read-command @var{prompt})
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1135 @equiv{}
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
1136 (intern (completing-read @var{prompt} obarray
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1137 'commandp t nil))
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1138 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1139 @end example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1140 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1141
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
1142 @defun read-variable prompt &optional default
56606
0c7bfbe7453f (High-Level Completion): Add anchor for definition of `read-variable'.
Luc Teirlinck <teirllm@auburn.edu>
parents: 56534
diff changeset
1143 @anchor{Definition of read-variable}
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1144 This function reads the name of a user variable and returns it as a
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1145 symbol.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1146
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
1147 The argument @var{default} specifies what to return if the user enters
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
1148 null input. It can be a symbol or a string; if it is a string,
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
1149 @code{read-variable} interns it before returning it. If @var{default}
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
1150 is @code{nil}, that means no default has been specified; then if the
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1151 user enters null input, the return value is @code{(intern "")}.
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
1152
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1153 @example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1154 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1155 (read-variable "Variable name? ")
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1156
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
1157 ;; @r{After evaluation of the preceding expression,}
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
1158 ;; @r{the following prompt appears,}
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1159 ;; @r{with an empty minibuffer:}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1160 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1161
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1162 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1163 ---------- Buffer: Minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1164 Variable name? @point{}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1165 ---------- Buffer: Minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1166 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1167 @end example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1168
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1169 @noindent
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1170 If the user then types @kbd{fill-p @key{RET}}, @code{read-variable}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1171 returns @code{fill-prefix}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1172
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1173 This function is similar to @code{read-command}, but uses the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1174 predicate @code{user-variable-p} instead of @code{commandp}:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1175
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1176 @cindex @code{user-variable-p} example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1177 @example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1178 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1179 (read-variable @var{prompt})
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1180 @equiv{}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1181 (intern
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1182 (completing-read @var{prompt} obarray
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1183 'user-variable-p t nil))
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1184 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1185 @end example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1186 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1187
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
1188 See also the functions @code{read-coding-system} and
22252
40089afa2b1d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 22138
diff changeset
1189 @code{read-non-nil-coding-system}, in @ref{User-Chosen Coding Systems}.
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
1190
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1191 @node Reading File Names
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1192 @subsection Reading File Names
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1193
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1194 Here is another high-level completion function, designed for reading a
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1195 file name. It provides special features including automatic insertion
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1196 of the default directory.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1197
52146
c78c690c99e8 (Reading File Names): read-file-name has new arg PREDICATE.
Richard M. Stallman <rms@gnu.org>
parents: 51989
diff changeset
1198 @defun read-file-name prompt &optional directory default existing initial predicate
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1199 This function reads a file name in the minibuffer, prompting with
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1200 @var{prompt} and providing completion.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1201
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1202 If @var{existing} is non-@code{nil}, then the user must specify the name
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1203 of an existing file; @key{RET} performs completion to make the name
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1204 valid if possible, and then refuses to exit if it is not valid. If the
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1205 value of @var{existing} is neither @code{nil} nor @code{t}, then
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1206 @key{RET} also requires confirmation after completion. If
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1207 @var{existing} is @code{nil}, then the name of a nonexistent file is
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1208 acceptable.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1209
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1210 The argument @var{directory} specifies the directory to use for
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1211 completion of relative file names. It should be an absolute directory
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1212 name. If @code{insert-default-directory} is non-@code{nil},
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1213 @var{directory} is also inserted in the minibuffer as initial input.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1214 It defaults to the current buffer's value of @code{default-directory}.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1215
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1216 @c Emacs 19 feature
52626
fe75563f4d13 Avoid @strong{Note:}.
Richard M. Stallman <rms@gnu.org>
parents: 52485
diff changeset
1217 If you specify @var{initial}, that is an initial file name to insert
fe75563f4d13 Avoid @strong{Note:}.
Richard M. Stallman <rms@gnu.org>
parents: 52485
diff changeset
1218 in the buffer (after @var{directory}, if that is inserted). In this
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1219 case, point goes at the beginning of @var{initial}. The default for
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1220 @var{initial} is @code{nil}---don't insert any file name. To see what
52626
fe75563f4d13 Avoid @strong{Note:}.
Richard M. Stallman <rms@gnu.org>
parents: 52485
diff changeset
1221 @var{initial} does, try the command @kbd{C-x C-v}. @strong{Please
fe75563f4d13 Avoid @strong{Note:}.
Richard M. Stallman <rms@gnu.org>
parents: 52485
diff changeset
1222 note:} we recommend using @var{default} rather than @var{initial} in
fe75563f4d13 Avoid @strong{Note:}.
Richard M. Stallman <rms@gnu.org>
parents: 52485
diff changeset
1223 most cases.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1224
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1225 If @var{default} is non-@code{nil}, then the function returns
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1226 @var{default} if the user exits the minibuffer with the same non-empty
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1227 contents that @code{read-file-name} inserted initially. The initial
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1228 minibuffer contents are always non-empty if
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1229 @code{insert-default-directory} is non-@code{nil}, as it is by
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1230 default. @var{default} is not checked for validity, regardless of the
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1231 value of @var{existing}. However, if @var{existing} is
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1232 non-@code{nil}, the initial minibuffer contents should be a valid file
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1233 (or directory) name. Otherwise @code{read-file-name} attempts
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1234 completion if the user exits without any editing, and does not return
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1235 @var{default}. @var{default} is also available through the history
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1236 commands.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1237
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1238 If @var{default} is @code{nil}, @code{read-file-name} tries to find a
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1239 substitute default to use in its place, which it treats in exactly the
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1240 same way as if it had been specified explicitly. If @var{default} is
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1241 @code{nil}, but @var{initial} is non-@code{nil}, then the default is
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1242 the absolute file name obtained from @var{directory} and
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1243 @var{initial}. If both @var{default} and @var{initial} are @code{nil}
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1244 and the buffer is visiting a file, @code{read-file-name} uses the
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1245 absolute file name of that file as default. If the buffer is not
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1246 visiting a file, then there is no default. In that case, if the user
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1247 types @key{RET} without any editing, @code{read-file-name} simply
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1248 returns the pre-inserted contents of the minibuffer.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1249
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1250 If the user types @key{RET} in an empty minibuffer, this function
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1251 returns an empty string, regardless of the value of @var{existing}.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1252 This is, for instance, how the user can make the current buffer visit
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1253 no file using @code{M-x set-visited-file-name}.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1254
52146
c78c690c99e8 (Reading File Names): read-file-name has new arg PREDICATE.
Richard M. Stallman <rms@gnu.org>
parents: 51989
diff changeset
1255 If @var{predicate} is non-@code{nil}, it specifies a function of one
c78c690c99e8 (Reading File Names): read-file-name has new arg PREDICATE.
Richard M. Stallman <rms@gnu.org>
parents: 51989
diff changeset
1256 argument that decides which file names are acceptable completion
c78c690c99e8 (Reading File Names): read-file-name has new arg PREDICATE.
Richard M. Stallman <rms@gnu.org>
parents: 51989
diff changeset
1257 possibilities. A file name is an acceptable value if @var{predicate}
c78c690c99e8 (Reading File Names): read-file-name has new arg PREDICATE.
Richard M. Stallman <rms@gnu.org>
parents: 51989
diff changeset
1258 returns non-@code{nil} for it.
c78c690c99e8 (Reading File Names): read-file-name has new arg PREDICATE.
Richard M. Stallman <rms@gnu.org>
parents: 51989
diff changeset
1259
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1260 @code{read-file-name} does not automatically expand file names. You
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1261 must call @code{expand-file-name} yourself if an absolute file name is
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1262 required.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1263
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
1264 Here is an example:
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1265
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1266 @example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1267 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1268 (read-file-name "The file is ")
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1269
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
1270 ;; @r{After evaluation of the preceding expression,}
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1271 ;; @r{the following appears in the minibuffer:}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1272 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1273
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1274 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1275 ---------- Buffer: Minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1276 The file is /gp/gnu/elisp/@point{}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1277 ---------- Buffer: Minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1278 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1279 @end example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1280
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1281 @noindent
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1282 Typing @kbd{manual @key{TAB}} results in the following:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1283
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1284 @example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1285 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1286 ---------- Buffer: Minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1287 The file is /gp/gnu/elisp/manual.texi@point{}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1288 ---------- Buffer: Minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1289 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1290 @end example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1291
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1292 @c Wordy to avoid overfull hbox in smallbook mode.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1293 @noindent
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1294 If the user types @key{RET}, @code{read-file-name} returns the file name
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1295 as the string @code{"/gp/gnu/elisp/manual.texi"}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1296 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1297
60783
73b73eabbe62 (Reading File Names): Document read-file-name-function.
Richard M. Stallman <rms@gnu.org>
parents: 60449
diff changeset
1298 @defvar read-file-name-function
73b73eabbe62 (Reading File Names): Document read-file-name-function.
Richard M. Stallman <rms@gnu.org>
parents: 60449
diff changeset
1299 If non-@code{nil}, this should be a function that accepts the same
73b73eabbe62 (Reading File Names): Document read-file-name-function.
Richard M. Stallman <rms@gnu.org>
parents: 60449
diff changeset
1300 arguments as @code{read-file-name}. When @code{read-file-name} is
73b73eabbe62 (Reading File Names): Document read-file-name-function.
Richard M. Stallman <rms@gnu.org>
parents: 60449
diff changeset
1301 called, it calls this function with the supplied arguments instead of
73b73eabbe62 (Reading File Names): Document read-file-name-function.
Richard M. Stallman <rms@gnu.org>
parents: 60449
diff changeset
1302 doing its usual work.
73b73eabbe62 (Reading File Names): Document read-file-name-function.
Richard M. Stallman <rms@gnu.org>
parents: 60449
diff changeset
1303 @end defvar
73b73eabbe62 (Reading File Names): Document read-file-name-function.
Richard M. Stallman <rms@gnu.org>
parents: 60449
diff changeset
1304
60961
059ddef3ce4b (Reading File Names): Document read-file-name-completion-ignore-case.
Richard M. Stallman <rms@gnu.org>
parents: 60783
diff changeset
1305 @defvar read-file-name-completion-ignore-case
059ddef3ce4b (Reading File Names): Document read-file-name-completion-ignore-case.
Richard M. Stallman <rms@gnu.org>
parents: 60783
diff changeset
1306 If this variable is non-@code{nil}, @code{read-file-name} ignores case
059ddef3ce4b (Reading File Names): Document read-file-name-completion-ignore-case.
Richard M. Stallman <rms@gnu.org>
parents: 60783
diff changeset
1307 when performing completion.
059ddef3ce4b (Reading File Names): Document read-file-name-completion-ignore-case.
Richard M. Stallman <rms@gnu.org>
parents: 60783
diff changeset
1308 @end defvar
059ddef3ce4b (Reading File Names): Document read-file-name-completion-ignore-case.
Richard M. Stallman <rms@gnu.org>
parents: 60783
diff changeset
1309
52146
c78c690c99e8 (Reading File Names): read-file-name has new arg PREDICATE.
Richard M. Stallman <rms@gnu.org>
parents: 51989
diff changeset
1310 @defun read-directory-name prompt &optional directory default existing initial
c78c690c99e8 (Reading File Names): read-file-name has new arg PREDICATE.
Richard M. Stallman <rms@gnu.org>
parents: 51989
diff changeset
1311 This function is like @code{read-file-name} but allows only directory
c78c690c99e8 (Reading File Names): read-file-name has new arg PREDICATE.
Richard M. Stallman <rms@gnu.org>
parents: 51989
diff changeset
1312 names as completion possibilities.
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1313
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1314 If @var{default} is @code{nil} and @var{initial} is non-@code{nil},
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1315 @code{read-directory-name} constructs a substitute default by
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1316 combining @var{directory} (or the current buffer's default directory
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1317 if @var{directory} is @code{nil}) and @var{initial}. If both
62595
761fb32ee169 (Reading File Names): Update description of `read-directory-name'.
Luc Teirlinck <teirllm@auburn.edu>
parents: 60961
diff changeset
1318 @var{default} and @var{initial} are @code{nil}, this function uses
761fb32ee169 (Reading File Names): Update description of `read-directory-name'.
Luc Teirlinck <teirllm@auburn.edu>
parents: 60961
diff changeset
1319 @var{directory} as substitute default, or the current buffer's default
761fb32ee169 (Reading File Names): Update description of `read-directory-name'.
Luc Teirlinck <teirllm@auburn.edu>
parents: 60961
diff changeset
1320 directory if @var{directory} is @code{nil}.
52146
c78c690c99e8 (Reading File Names): read-file-name has new arg PREDICATE.
Richard M. Stallman <rms@gnu.org>
parents: 51989
diff changeset
1321 @end defun
c78c690c99e8 (Reading File Names): read-file-name has new arg PREDICATE.
Richard M. Stallman <rms@gnu.org>
parents: 51989
diff changeset
1322
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1323 @defopt insert-default-directory
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1324 This variable is used by @code{read-file-name}, and thus, indirectly,
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1325 by most commands reading file names. (This includes all commands that
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1326 use the code letters @samp{f} or @samp{F} in their interactive form.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1327 @xref{Interactive Codes,, Code Characters for interactive}.) Its
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1328 value controls whether @code{read-file-name} starts by placing the
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1329 name of the default directory in the minibuffer, plus the initial file
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1330 name if any. If the value of this variable is @code{nil}, then
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1331 @code{read-file-name} does not place any initial input in the
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1332 minibuffer (unless you specify initial input with the @var{initial}
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1333 argument). In that case, the default directory is still used for
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1334 completion of relative file names, but is not displayed.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1335
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1336 If this variable is @code{nil} and the initial minibuffer contents are
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1337 empty, the user may have to explicitly fetch the next history element
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1338 to access a default value. If the variable is non-@code{nil}, the
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1339 initial minibuffer contents are always non-empty and the user can
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1340 always request a default value by immediately typing @key{RET} in an
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1341 unedited minibuffer. (See above.)
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1342
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1343 For example:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1344
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1345 @example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1346 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1347 ;; @r{Here the minibuffer starts out with the default directory.}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1348 (let ((insert-default-directory t))
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1349 (read-file-name "The file is "))
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1350 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1351
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1352 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1353 ---------- Buffer: Minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1354 The file is ~lewis/manual/@point{}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1355 ---------- Buffer: Minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1356 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1357
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1358 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1359 ;; @r{Here the minibuffer is empty and only the prompt}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1360 ;; @r{appears on its line.}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1361 (let ((insert-default-directory nil))
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1362 (read-file-name "The file is "))
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1363 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1364
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1365 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1366 ---------- Buffer: Minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1367 The file is @point{}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1368 ---------- Buffer: Minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1369 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1370 @end example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1371 @end defopt
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1372
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1373 @node Programmed Completion
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1374 @subsection Programmed Completion
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1375 @cindex programmed completion
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1376
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1377 Sometimes it is not possible to create an alist or an obarray
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1378 containing all the intended possible completions. In such a case, you
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1379 can supply your own function to compute the completion of a given string.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1380 This is called @dfn{programmed completion}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1381
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1382 To use this feature, pass a symbol with a function definition as the
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1383 @var{collection} argument to @code{completing-read}. The function
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1384 @code{completing-read} arranges to pass your completion function along
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1385 to @code{try-completion} and @code{all-completions}, which will then let
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1386 your function do all the work.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1387
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1388 The completion function should accept three arguments:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1389
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1390 @itemize @bullet
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1391 @item
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1392 The string to be completed.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1393
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1394 @item
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1395 The predicate function to filter possible matches, or @code{nil} if
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1396 none. Your function should call the predicate for each possible match,
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1397 and ignore the possible match if the predicate returns @code{nil}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1398
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1399 @item
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1400 A flag specifying the type of operation.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1401 @end itemize
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1402
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1403 There are three flag values for three operations:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1404
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1405 @itemize @bullet
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1406 @item
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1407 @code{nil} specifies @code{try-completion}. The completion function
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1408 should return the completion of the specified string, or @code{t} if the
16157
1713fe640e41 Clarify value returned by programmed completion function.
Richard M. Stallman <rms@gnu.org>
parents: 15768
diff changeset
1409 string is a unique and exact match already, or @code{nil} if the string
1713fe640e41 Clarify value returned by programmed completion function.
Richard M. Stallman <rms@gnu.org>
parents: 15768
diff changeset
1410 matches no possibility.
1713fe640e41 Clarify value returned by programmed completion function.
Richard M. Stallman <rms@gnu.org>
parents: 15768
diff changeset
1411
1713fe640e41 Clarify value returned by programmed completion function.
Richard M. Stallman <rms@gnu.org>
parents: 15768
diff changeset
1412 If the string is an exact match for one possibility, but also matches
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
1413 other longer possibilities, the function should return the string, not
16157
1713fe640e41 Clarify value returned by programmed completion function.
Richard M. Stallman <rms@gnu.org>
parents: 15768
diff changeset
1414 @code{t}.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1415
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1416 @item
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1417 @code{t} specifies @code{all-completions}. The completion function
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1418 should return a list of all possible completions of the specified
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1419 string.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1420
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1421 @item
51989
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
1422 @code{lambda} specifies @code{test-completion}. The completion
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1423 function should return @code{t} if the specified string is an exact
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1424 match for some possibility; @code{nil} otherwise.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1425 @end itemize
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1426
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1427 It would be consistent and clean for completion functions to allow
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
1428 lambda expressions (lists that are functions) as well as function
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1429 symbols as @var{collection}, but this is impossible. Lists as
51989
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
1430 completion tables already have other meanings, and it would be
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
1431 unreliable to treat one differently just because it is also a possible
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
1432 function. So you must arrange for any function you wish to use for
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
1433 completion to be encapsulated in a symbol.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1434
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1435 Emacs uses programmed completion when completing file names.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1436 @xref{File Name Completion}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1437
51914
9cd313749c97 (Basic Completion): Add lazy-completion-table.
Richard M. Stallman <rms@gnu.org>
parents: 51703
diff changeset
1438 @defmac dynamic-completion-table function
9cd313749c97 (Basic Completion): Add lazy-completion-table.
Richard M. Stallman <rms@gnu.org>
parents: 51703
diff changeset
1439 This macro is a convenient way to write a function that can act as
9cd313749c97 (Basic Completion): Add lazy-completion-table.
Richard M. Stallman <rms@gnu.org>
parents: 51703
diff changeset
1440 programmed completion function. The argument @var{function} should be
9cd313749c97 (Basic Completion): Add lazy-completion-table.
Richard M. Stallman <rms@gnu.org>
parents: 51703
diff changeset
1441 a function that takes one argument, a string, and returns an alist of
9cd313749c97 (Basic Completion): Add lazy-completion-table.
Richard M. Stallman <rms@gnu.org>
parents: 51703
diff changeset
1442 possible completions of it. You can think of
9cd313749c97 (Basic Completion): Add lazy-completion-table.
Richard M. Stallman <rms@gnu.org>
parents: 51703
diff changeset
1443 @code{dynamic-completion-table} as a transducer between that interface
9cd313749c97 (Basic Completion): Add lazy-completion-table.
Richard M. Stallman <rms@gnu.org>
parents: 51703
diff changeset
1444 and the interface for programmed completion functions.
9cd313749c97 (Basic Completion): Add lazy-completion-table.
Richard M. Stallman <rms@gnu.org>
parents: 51703
diff changeset
1445 @end defmac
9cd313749c97 (Basic Completion): Add lazy-completion-table.
Richard M. Stallman <rms@gnu.org>
parents: 51703
diff changeset
1446
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1447 @node Yes-or-No Queries
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1448 @section Yes-or-No Queries
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1449 @cindex asking the user questions
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1450 @cindex querying the user
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1451 @cindex yes-or-no questions
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1452
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1453 This section describes functions used to ask the user a yes-or-no
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1454 question. The function @code{y-or-n-p} can be answered with a single
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1455 character; it is useful for questions where an inadvertent wrong answer
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1456 will not have serious consequences. @code{yes-or-no-p} is suitable for
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1457 more momentous questions, since it requires three or four characters to
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1458 answer.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1459
7337
cd57cd335fff *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 7221
diff changeset
1460 If either of these functions is called in a command that was invoked
cd57cd335fff *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 7221
diff changeset
1461 using the mouse---more precisely, if @code{last-nonmenu-event}
cd57cd335fff *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 7221
diff changeset
1462 (@pxref{Command Loop Info}) is either @code{nil} or a list---then it
cd57cd335fff *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 7221
diff changeset
1463 uses a dialog box or pop-up menu to ask the question. Otherwise, it
cd57cd335fff *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 7221
diff changeset
1464 uses keyboard input. You can force use of the mouse or use of keyboard
cd57cd335fff *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 7221
diff changeset
1465 input by binding @code{last-nonmenu-event} to a suitable value around
cd57cd335fff *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 7221
diff changeset
1466 the call.
cd57cd335fff *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 7221
diff changeset
1467
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1468 Strictly speaking, @code{yes-or-no-p} uses the minibuffer and
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1469 @code{y-or-n-p} does not; but it seems best to describe them together.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1470
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1471 @defun y-or-n-p prompt
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1472 This function asks the user a question, expecting input in the echo
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1473 area. It returns @code{t} if the user types @kbd{y}, @code{nil} if the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1474 user types @kbd{n}. This function also accepts @key{SPC} to mean yes
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1475 and @key{DEL} to mean no. It accepts @kbd{C-]} to mean ``quit'', like
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1476 @kbd{C-g}, because the question might look like a minibuffer and for
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1477 that reason the user might try to use @kbd{C-]} to get out. The answer
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1478 is a single character, with no @key{RET} needed to terminate it. Upper
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1479 and lower case are equivalent.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1480
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1481 ``Asking the question'' means printing @var{prompt} in the echo area,
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1482 followed by the string @w{@samp{(y or n) }}. If the input is not one of
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1483 the expected answers (@kbd{y}, @kbd{n}, @kbd{@key{SPC}},
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1484 @kbd{@key{DEL}}, or something that quits), the function responds
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1485 @samp{Please answer y or n.}, and repeats the request.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1486
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1487 This function does not actually use the minibuffer, since it does not
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1488 allow editing of the answer. It actually uses the echo area (@pxref{The
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1489 Echo Area}), which uses the same screen space as the minibuffer. The
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1490 cursor moves to the echo area while the question is being asked.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1491
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1492 The answers and their meanings, even @samp{y} and @samp{n}, are not
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1493 hardwired. The keymap @code{query-replace-map} specifies them.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1494 @xref{Search and Replace}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1495
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1496 In the following example, the user first types @kbd{q}, which is
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1497 invalid. At the next prompt the user types @kbd{y}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1498
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1499 @smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1500 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1501 (y-or-n-p "Do you need a lift? ")
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1502
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
1503 ;; @r{After evaluation of the preceding expression,}
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1504 ;; @r{the following prompt appears in the echo area:}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1505 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1506
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1507 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1508 ---------- Echo area ----------
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
1509 Do you need a lift? (y or n)
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1510 ---------- Echo area ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1511 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1512
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1513 ;; @r{If the user then types @kbd{q}, the following appears:}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1514
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1515 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1516 ---------- Echo area ----------
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
1517 Please answer y or n. Do you need a lift? (y or n)
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1518 ---------- Echo area ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1519 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1520
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1521 ;; @r{When the user types a valid answer,}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1522 ;; @r{it is displayed after the question:}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1523
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1524 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1525 ---------- Echo area ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1526 Do you need a lift? (y or n) y
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1527 ---------- Echo area ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1528 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1529 @end smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1530
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1531 @noindent
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1532 We show successive lines of echo area messages, but only one actually
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1533 appears on the screen at a time.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1534 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1535
15768
b913a75fddee Add y-or-n-p-with-timeout.
Richard M. Stallman <rms@gnu.org>
parents: 13319
diff changeset
1536 @defun y-or-n-p-with-timeout prompt seconds default-value
b913a75fddee Add y-or-n-p-with-timeout.
Richard M. Stallman <rms@gnu.org>
parents: 13319
diff changeset
1537 Like @code{y-or-n-p}, except that if the user fails to answer within
b913a75fddee Add y-or-n-p-with-timeout.
Richard M. Stallman <rms@gnu.org>
parents: 13319
diff changeset
1538 @var{seconds} seconds, this function stops waiting and returns
b913a75fddee Add y-or-n-p-with-timeout.
Richard M. Stallman <rms@gnu.org>
parents: 13319
diff changeset
1539 @var{default-value}. It works by setting up a timer; see @ref{Timers}.
b913a75fddee Add y-or-n-p-with-timeout.
Richard M. Stallman <rms@gnu.org>
parents: 13319
diff changeset
1540 The argument @var{seconds} may be an integer or a floating point number.
b913a75fddee Add y-or-n-p-with-timeout.
Richard M. Stallman <rms@gnu.org>
parents: 13319
diff changeset
1541 @end defun
b913a75fddee Add y-or-n-p-with-timeout.
Richard M. Stallman <rms@gnu.org>
parents: 13319
diff changeset
1542
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1543 @defun yes-or-no-p prompt
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1544 This function asks the user a question, expecting input in the
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1545 minibuffer. It returns @code{t} if the user enters @samp{yes},
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1546 @code{nil} if the user types @samp{no}. The user must type @key{RET} to
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1547 finalize the response. Upper and lower case are equivalent.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1548
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1549 @code{yes-or-no-p} starts by displaying @var{prompt} in the echo area,
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1550 followed by @w{@samp{(yes or no) }}. The user must type one of the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1551 expected responses; otherwise, the function responds @samp{Please answer
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1552 yes or no.}, waits about two seconds and repeats the request.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1553
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1554 @code{yes-or-no-p} requires more work from the user than
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1555 @code{y-or-n-p} and is appropriate for more crucial decisions.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1556
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1557 Here is an example:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1558
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1559 @smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1560 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1561 (yes-or-no-p "Do you really want to remove everything? ")
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1562
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
1563 ;; @r{After evaluation of the preceding expression,}
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
1564 ;; @r{the following prompt appears,}
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1565 ;; @r{with an empty minibuffer:}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1566 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1567
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1568 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1569 ---------- Buffer: minibuffer ----------
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48730
diff changeset
1570 Do you really want to remove everything? (yes or no)
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1571 ---------- Buffer: minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1572 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1573 @end smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1574
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1575 @noindent
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1576 If the user first types @kbd{y @key{RET}}, which is invalid because this
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1577 function demands the entire word @samp{yes}, it responds by displaying
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1578 these prompts, with a brief pause between them:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1579
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1580 @smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1581 @group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1582 ---------- Buffer: minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1583 Please answer yes or no.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1584 Do you really want to remove everything? (yes or no)
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1585 ---------- Buffer: minibuffer ----------
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1586 @end group
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1587 @end smallexample
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1588 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1589
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1590 @node Multiple Queries
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1591 @section Asking Multiple Y-or-N Questions
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1592
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1593 When you have a series of similar questions to ask, such as ``Do you
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1594 want to save this buffer'' for each buffer in turn, you should use
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1595 @code{map-y-or-n-p} to ask the collection of questions, rather than
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1596 asking each question individually. This gives the user certain
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1597 convenient facilities such as the ability to answer the whole series at
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1598 once.
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1599
26696
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
1600 @defun map-y-or-n-p prompter actor list &optional help action-alist no-cursor-in-echo-area
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
1601 This function asks the user a series of questions, reading a
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
1602 single-character answer in the echo area for each one.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1603
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1604 The value of @var{list} specifies the objects to ask questions about.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1605 It should be either a list of objects or a generator function. If it is
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1606 a function, it should expect no arguments, and should return either the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1607 next object to ask about, or @code{nil} meaning stop asking questions.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1608
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1609 The argument @var{prompter} specifies how to ask each question. If
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1610 @var{prompter} is a string, the question text is computed like this:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1611
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1612 @example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1613 (format @var{prompter} @var{object})
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1614 @end example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1615
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1616 @noindent
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1617 where @var{object} is the next object to ask about (as obtained from
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1618 @var{list}).
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1619
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1620 If not a string, @var{prompter} should be a function of one argument
12226
af994773013b changes for 19.29.
Melissa Weisshaus <melissa@gnu.org>
parents: 12098
diff changeset
1621 (the next object to ask about) and should return the question text. If
af994773013b changes for 19.29.
Melissa Weisshaus <melissa@gnu.org>
parents: 12098
diff changeset
1622 the value is a string, that is the question to ask the user. The
af994773013b changes for 19.29.
Melissa Weisshaus <melissa@gnu.org>
parents: 12098
diff changeset
1623 function can also return @code{t} meaning do act on this object (and
af994773013b changes for 19.29.
Melissa Weisshaus <melissa@gnu.org>
parents: 12098
diff changeset
1624 don't ask the user), or @code{nil} meaning ignore this object (and don't
af994773013b changes for 19.29.
Melissa Weisshaus <melissa@gnu.org>
parents: 12098
diff changeset
1625 ask the user).
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1626
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1627 The argument @var{actor} says how to act on the answers that the user
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1628 gives. It should be a function of one argument, and it is called with
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1629 each object that the user says yes for. Its argument is always an
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1630 object obtained from @var{list}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1631
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1632 If the argument @var{help} is given, it should be a list of this form:
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1633
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1634 @example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1635 (@var{singular} @var{plural} @var{action})
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1636 @end example
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1637
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1638 @noindent
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1639 where @var{singular} is a string containing a singular noun that
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1640 describes the objects conceptually being acted on, @var{plural} is the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1641 corresponding plural noun, and @var{action} is a transitive verb
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1642 describing what @var{actor} does.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1643
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1644 If you don't specify @var{help}, the default is @code{("object"
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1645 "objects" "act on")}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1646
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1647 Each time a question is asked, the user may enter @kbd{y}, @kbd{Y}, or
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1648 @key{SPC} to act on that object; @kbd{n}, @kbd{N}, or @key{DEL} to skip
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1649 that object; @kbd{!} to act on all following objects; @key{ESC} or
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1650 @kbd{q} to exit (skip all following objects); @kbd{.} (period) to act on
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1651 the current object and then exit; or @kbd{C-h} to get help. These are
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1652 the same answers that @code{query-replace} accepts. The keymap
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1653 @code{query-replace-map} defines their meaning for @code{map-y-or-n-p}
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1654 as well as for @code{query-replace}; see @ref{Search and Replace}.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1655
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1656 You can use @var{action-alist} to specify additional possible answers
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1657 and what they mean. It is an alist of elements of the form
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1658 @code{(@var{char} @var{function} @var{help})}, each of which defines one
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1659 additional answer. In this element, @var{char} is a character (the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1660 answer); @var{function} is a function of one argument (an object from
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1661 @var{list}); @var{help} is a string.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1662
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1663 When the user responds with @var{char}, @code{map-y-or-n-p} calls
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1664 @var{function}. If it returns non-@code{nil}, the object is considered
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1665 ``acted upon'', and @code{map-y-or-n-p} advances to the next object in
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1666 @var{list}. If it returns @code{nil}, the prompt is repeated for the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1667 same object.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1668
26696
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
1669 Normally, @code{map-y-or-n-p} binds @code{cursor-in-echo-area} while
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
1670 prompting. But if @var{no-cursor-in-echo-area} is non-@code{nil}, it
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
1671 does not do that.
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
1672
7337
cd57cd335fff *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 7221
diff changeset
1673 If @code{map-y-or-n-p} is called in a command that was invoked using the
cd57cd335fff *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 7221
diff changeset
1674 mouse---more precisely, if @code{last-nonmenu-event} (@pxref{Command
cd57cd335fff *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 7221
diff changeset
1675 Loop Info}) is either @code{nil} or a list---then it uses a dialog box
cd57cd335fff *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 7221
diff changeset
1676 or pop-up menu to ask the question. In this case, it does not use
cd57cd335fff *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 7221
diff changeset
1677 keyboard input or the echo area. You can force use of the mouse or use
cd57cd335fff *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 7221
diff changeset
1678 of keyboard input by binding @code{last-nonmenu-event} to a suitable
cd57cd335fff *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 7221
diff changeset
1679 value around the call.
cd57cd335fff *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 7221
diff changeset
1680
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1681 The return value of @code{map-y-or-n-p} is the number of objects acted on.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1682 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1683
23147
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1684 @node Reading a Password
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1685 @section Reading a Password
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1686 @cindex passwords, reading
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1687
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1688 To read a password to pass to another program, you can use the
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1689 function @code{read-passwd}.
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1690
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1691 @defun read-passwd prompt &optional confirm default
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1692 This function reads a password, prompting with @var{prompt}. It does
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1693 not echo the password as the user types it; instead, it echoes @samp{.}
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1694 for each character in the password.
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1695
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1696 The optional argument @var{confirm}, if non-@code{nil}, says to read the
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1697 password twice and insist it must be the same both times. If it isn't
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1698 the same, the user has to type it over and over until the last two
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1699 times match.
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1700
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1701 The optional argument @var{default} specifies the default password to
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1702 return if the user enters empty input. If @var{default} is @code{nil},
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1703 then @code{read-passwd} returns the null string in that case.
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1704 @end defun
ad9732e88e90 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 23146
diff changeset
1705
64843
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1706 @node Minibuffer Commands
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1707 @section Minibuffer Commands
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1708
64843
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1709 This section describes some commands meant for use in the
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1710 minibuffer.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1711
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1712 @deffn Command exit-minibuffer
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1713 This command exits the active minibuffer. It is normally bound to
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1714 keys in minibuffer local keymaps.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1715 @end deffn
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1716
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1717 @deffn Command self-insert-and-exit
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1718 This command exits the active minibuffer after inserting the last
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1719 character typed on the keyboard (found in @code{last-command-char};
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1720 @pxref{Command Loop Info}).
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1721 @end deffn
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1722
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1723 @deffn Command previous-history-element n
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1724 This command replaces the minibuffer contents with the value of the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1725 @var{n}th previous (older) history element.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1726 @end deffn
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1727
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1728 @deffn Command next-history-element n
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1729 This command replaces the minibuffer contents with the value of the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1730 @var{n}th more recent history element.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1731 @end deffn
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1732
26696
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
1733 @deffn Command previous-matching-history-element pattern n
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1734 This command replaces the minibuffer contents with the value of the
26696
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
1735 @var{n}th previous (older) history element that matches @var{pattern} (a
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
1736 regular expression).
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1737 @end deffn
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1738
26696
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
1739 @deffn Command next-matching-history-element pattern n
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
1740 This command replaces the minibuffer contents with the value of the
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
1741 @var{n}th next (newer) history element that matches @var{pattern} (a
ef5e7bbe6f19 Current version from /gd/gnu/elisp.
Dave Love <fx@gnu.org>
parents: 25751
diff changeset
1742 regular expression).
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1743 @end deffn
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1744
64843
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1745 @node Minibuffer Windows
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1746 @section Minibuffer Windows
39531
35c1673ff6ab (Minibuffer Misc): Add entries for `minibuffer-contents',
Miles Bader <miles@gnu.org>
parents: 38159
diff changeset
1747
64843
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1748 These functions access and select minibuffer windows
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1749 and test whether they are active.
51989
13ba58726a52 (Basic Completion): Describe test-completion.
Richard M. Stallman <rms@gnu.org>
parents: 51914
diff changeset
1750
12067
73dc8205d259 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 8753
diff changeset
1751 @defun active-minibuffer-window
73dc8205d259 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 8753
diff changeset
1752 This function returns the currently active minibuffer window, or
73dc8205d259 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 8753
diff changeset
1753 @code{nil} if none is currently active.
73dc8205d259 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 8753
diff changeset
1754 @end defun
73dc8205d259 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 8753
diff changeset
1755
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1756 @defun minibuffer-window &optional frame
56534
3d8fa211fc46 (Minibuffer Misc): Add anchor.
Luc Teirlinck <teirllm@auburn.edu>
parents: 56485
diff changeset
1757 @anchor{Definition of minibuffer-window}
12067
73dc8205d259 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 8753
diff changeset
1758 This function returns the minibuffer window used for frame @var{frame}.
73dc8205d259 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 8753
diff changeset
1759 If @var{frame} is @code{nil}, that stands for the current frame. Note
73dc8205d259 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 8753
diff changeset
1760 that the minibuffer window used by a frame need not be part of that
73dc8205d259 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 8753
diff changeset
1761 frame---a frame that has no minibuffer of its own necessarily uses some
73dc8205d259 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 8753
diff changeset
1762 other frame's minibuffer window.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1763 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1764
53429
246f74971d9a (Minibuffer Misc): Add set-minibuffer-window.
Richard M. Stallman <rms@gnu.org>
parents: 52626
diff changeset
1765 @defun set-minibuffer-window window
246f74971d9a (Minibuffer Misc): Add set-minibuffer-window.
Richard M. Stallman <rms@gnu.org>
parents: 52626
diff changeset
1766 This function specifies @var{window} as the minibuffer window to use.
246f74971d9a (Minibuffer Misc): Add set-minibuffer-window.
Richard M. Stallman <rms@gnu.org>
parents: 52626
diff changeset
1767 This affects where the minibuffer is displayed if you put text in it
246f74971d9a (Minibuffer Misc): Add set-minibuffer-window.
Richard M. Stallman <rms@gnu.org>
parents: 52626
diff changeset
1768 without invoking the usual minibuffer commands. It has no effect on
246f74971d9a (Minibuffer Misc): Add set-minibuffer-window.
Richard M. Stallman <rms@gnu.org>
parents: 52626
diff changeset
1769 the usual minibuffer input functions because they all start by
246f74971d9a (Minibuffer Misc): Add set-minibuffer-window.
Richard M. Stallman <rms@gnu.org>
parents: 52626
diff changeset
1770 choosing the minibuffer window according to the current frame.
246f74971d9a (Minibuffer Misc): Add set-minibuffer-window.
Richard M. Stallman <rms@gnu.org>
parents: 52626
diff changeset
1771 @end defun
246f74971d9a (Minibuffer Misc): Add set-minibuffer-window.
Richard M. Stallman <rms@gnu.org>
parents: 52626
diff changeset
1772
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1773 @c Emacs 19 feature
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1774 @defun window-minibuffer-p &optional window
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1775 This function returns non-@code{nil} if @var{window} is a minibuffer
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1776 window.
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1777 @var{window} defaults to the selected window.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1778 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1779
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1780 It is not correct to determine whether a given window is a minibuffer by
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1781 comparing it with the result of @code{(minibuffer-window)}, because
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1782 there can be more than one minibuffer window if there is more than one
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1783 frame.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1784
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1785 @defun minibuffer-window-active-p window
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1786 This function returns non-@code{nil} if @var{window}, assumed to be
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1787 a minibuffer window, is currently active.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1788 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1789
64843
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1790 @node Minibuffer Contents
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1791 @section Minibuffer Contents
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1792
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1793 These functions access the minibuffer prompt and contents.
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1794
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1795 @defun minibuffer-prompt
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1796 This function returns the prompt string of the currently active
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1797 minibuffer. If no minibuffer is active, it returns @code{nil}.
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1798 @end defun
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1799
64843
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1800 @defun minibuffer-prompt-end
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1801 @tindex minibuffer-prompt-end
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1802 This function returns the current
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1803 position of the end of the minibuffer prompt, if a minibuffer is
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1804 current. Otherwise, it returns the minimum valid buffer position.
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1805 @end defun
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1806
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1807 @defun minibuffer-prompt-width
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1808 This function returns the current display-width of the minibuffer
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1809 prompt, if a minibuffer is current. Otherwise, it returns zero.
52485
7fc901c75a7d (Intro to Minibuffers): Explain that the minibuffer
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
1810 @end defun
7fc901c75a7d (Intro to Minibuffers): Explain that the minibuffer
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
1811
64843
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1812 @defun minibuffer-contents
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1813 @tindex minibuffer-contents
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1814 This function returns the editable
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1815 contents of the minibuffer (that is, everything except the prompt) as
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1816 a string, if a minibuffer is current. Otherwise, it returns the
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1817 entire contents of the current buffer.
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1818 @end defun
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1819
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1820 @defun minibuffer-contents-no-properties
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1821 @tindex minibuffer-contents-no-properties
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1822 This is like @code{minibuffer-contents}, except that it does not copy text
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1823 properties, just the characters themselves. @xref{Text Properties}.
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1824 @end defun
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1825
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1826 @defun delete-minibuffer-contents
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1827 @tindex delete-minibuffer-contents
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1828 This function erases the editable contents of the minibuffer (that is,
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1829 everything except the prompt), if a minibuffer is current. Otherwise,
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1830 it erases the entire current buffer.
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1831 @end defun
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1832
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1833 @node Recursive Mini
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1834 @section Recursive Minibuffers
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1835
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1836 These functions and variables deal with recursive minibuffers
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1837 (@pxref{Recursive Editing}):
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1838
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1839 @defun minibuffer-depth
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1840 This function returns the current depth of activations of the
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1841 minibuffer, a nonnegative integer. If no minibuffers are active, it
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1842 returns zero.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1843 @end defun
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1844
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1845 @defopt enable-recursive-minibuffers
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1846 If this variable is non-@code{nil}, you can invoke commands (such as
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
1847 @code{find-file}) that use minibuffers even while the minibuffer window
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
1848 is active. Such invocation produces a recursive editing level for a new
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1849 minibuffer. The outer-level minibuffer is invisible while you are
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1850 editing the inner one.
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1851
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
1852 If this variable is @code{nil}, you cannot invoke minibuffer
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
1853 commands when the minibuffer window is active, not even if you switch to
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
1854 another window to do it.
6555
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1855 @end defopt
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1856
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1857 @c Emacs 19 feature
771fa0ddb356 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1858 If a command name has a property @code{enable-recursive-minibuffers}
7221
a2c7acc3be9c *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6555
diff changeset
1859 that is non-@code{nil}, then the command can use the minibuffer to read
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1860 arguments even if it is invoked from the minibuffer. A command can
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1861 also achieve this by binding @code{enable-recursive-minibuffers}
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1862 to @code{t} in the interactive declaration (@pxref{Using Interactive}).
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1863 The minibuffer command @code{next-matching-history-element} (normally
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1864 @kbd{M-s} in the minibuffer) does the latter.
50603
86ea12469954 (Minibuffer Misc): Document fn minibuffer-message.
Richard M. Stallman <rms@gnu.org>
parents: 49600
diff changeset
1865
64843
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1866 @node Minibuffer Misc
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1867 @section Minibuffer Miscellany
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1868
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1869 @defun minibufferp &optional buffer-or-name
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1870 This function returns non-@code{nil} if @var{buffer-or-name} is a
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1871 minibuffer. If @var{buffer-or-name} is omitted, it tests the current
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1872 buffer.
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1873 @end defun
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1874
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1875 @defvar minibuffer-setup-hook
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1876 This is a normal hook that is run whenever the minibuffer is entered.
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1877 @xref{Hooks}.
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1878 @end defvar
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1879
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1880 @defvar minibuffer-exit-hook
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1881 This is a normal hook that is run whenever the minibuffer is exited.
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1882 @xref{Hooks}.
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1883 @end defvar
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1884
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1885 @defvar minibuffer-help-form
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1886 @anchor{Definition of minibuffer-help-form}
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1887 The current value of this variable is used to rebind @code{help-form}
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1888 locally inside the minibuffer (@pxref{Help Functions}).
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1889 @end defvar
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1890
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1891 @defvar minibuffer-scroll-window
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1892 @anchor{Definition of minibuffer-scroll-window}
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1893 If the value of this variable is non-@code{nil}, it should be a window
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1894 object. When the function @code{scroll-other-window} is called in the
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1895 minibuffer, it scrolls this window.
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1896 @end defvar
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1897
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1898 @defun minibuffer-selected-window
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1899 This function returns the window which was selected when the
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1900 minibuffer was entered. If selected window is not a minibuffer
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1901 window, it returns @code{nil}.
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1902 @end defun
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1903
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1904 @defopt max-mini-window-height
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1905 This variable specifies the maximum height for resizing minibuffer
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1906 windows. If a float, it specifies a fraction of the height of the
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1907 frame. If an integer, it specifies a number of lines.
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1908 @end defopt
6c4d2fa924e4 (Minibuffer Misc): Node split up.
Richard M. Stallman <rms@gnu.org>
parents: 63582
diff changeset
1909
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1910 @defun minibuffer-message string
50603
86ea12469954 (Minibuffer Misc): Document fn minibuffer-message.
Richard M. Stallman <rms@gnu.org>
parents: 49600
diff changeset
1911 This function displays @var{string} temporarily at the end of the
53801
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1912 minibuffer text, for two seconds, or until the next input event
7fda9e6236d5 (Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53429
diff changeset
1913 arrives, whichever comes first.
50603
86ea12469954 (Minibuffer Misc): Document fn minibuffer-message.
Richard M. Stallman <rms@gnu.org>
parents: 49600
diff changeset
1914 @end defun
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 52146
diff changeset
1915
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 52146
diff changeset
1916 @ignore
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 52146
diff changeset
1917 arch-tag: bba7f945-9078-477f-a2ce-18818a6e1218
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 52146
diff changeset
1918 @end ignore