Mercurial > emacs
annotate lispref/minibuf.texi @ 22201:40b715281ea5
(rmail-default-body-file): New variable.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 23 May 1998 20:08:19 +0000 |
parents | d4ac295a98b3 |
children | 40089afa2b1d |
rev | line source |
---|---|
6555 | 1 @c -*-texinfo-*- |
2 @c This is part of the GNU Emacs Lisp Reference Manual. | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998 Free Software Foundation, Inc. |
6555 | 4 @c See the file elisp.texi for copying conditions. |
5 @setfilename ../info/minibuf | |
7337
cd57cd335fff
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7221
diff
changeset
|
6 @node Minibuffers, Command Loop, Read and Print, Top |
6555 | 7 @chapter Minibuffers |
8 @cindex arguments, reading | |
9 @cindex complex arguments | |
10 @cindex minibuffer | |
11 | |
12 A @dfn{minibuffer} is a special buffer that Emacs commands use to read | |
13 arguments more complicated than the single numeric prefix argument. | |
14 These arguments include file names, buffer names, and command names (as | |
15 in @kbd{M-x}). The minibuffer is displayed on the bottom line of the | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
16 frame, in the same place as the echo area, but only while it is in use |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
17 for reading an argument. |
6555 | 18 |
19 @menu | |
20 * Intro to Minibuffers:: Basic information about minibuffers. | |
21 * Text from Minibuffer:: How to read a straight text string. | |
22 * Object from Minibuffer:: How to read a Lisp object or expression. | |
23 * Minibuffer History:: Recording previous minibuffer inputs | |
24 so the user can reuse them. | |
25 * Completion:: How to invoke and customize completion. | |
26 * Yes-or-No Queries:: Asking a question with a simple answer. | |
27 * Multiple Queries:: Asking a series of similar questions. | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
28 * Reading a Password:: Function for reading a password. |
6555 | 29 * Minibuffer Misc:: Various customization hooks and variables. |
30 @end menu | |
31 | |
32 @node Intro to Minibuffers | |
33 @section Introduction to Minibuffers | |
34 | |
35 In most ways, a minibuffer is a normal Emacs buffer. Most operations | |
36 @emph{within} a buffer, such as editing commands, work normally in a | |
37 minibuffer. However, many operations for managing buffers do not apply | |
38 to minibuffers. The name of a minibuffer always has the form @w{@samp{ | |
39 *Minibuf-@var{number}}}, and it cannot be changed. Minibuffers are | |
40 displayed only in special windows used only for minibuffers; these | |
41 windows always appear at the bottom of a frame. (Sometime frames have | |
42 no minibuffer window, and sometimes a special kind of frame contains | |
43 nothing but a minibuffer window; see @ref{Minibuffers and Frames}.) | |
44 | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
45 The minibuffer's window is normally a single line. You can resize it |
6555 | 46 temporarily with the window sizing commands; it reverts to its normal |
47 size when the minibuffer is exited. You can resize it permanently by | |
48 using the window sizing commands in the frame's other window, when the | |
49 minibuffer is not active. If the frame contains just a minibuffer, you | |
50 can change the minibuffer's size by changing the frame's size. | |
51 | |
52 If a command uses a minibuffer while there is an active minibuffer, | |
53 this is called a @dfn{recursive minibuffer}. The first minibuffer is | |
54 named @w{@samp{ *Minibuf-0*}}. Recursive minibuffers are named by | |
55 incrementing the number at the end of the name. (The names begin with a | |
56 space so that they won't show up in normal buffer lists.) Of several | |
57 recursive minibuffers, the innermost (or most recently entered) is the | |
58 active minibuffer. We usually call this ``the'' minibuffer. You can | |
59 permit or forbid recursive minibuffers by setting the variable | |
60 @code{enable-recursive-minibuffers} or by putting properties of that | |
61 name on command symbols (@pxref{Minibuffer Misc}). | |
62 | |
63 Like other buffers, a minibuffer may use any of several local keymaps | |
64 (@pxref{Keymaps}); these contain various exit commands and in some cases | |
12098 | 65 completion commands (@pxref{Completion}). |
6555 | 66 |
67 @itemize @bullet | |
68 @item | |
69 @code{minibuffer-local-map} is for ordinary input (no completion). | |
70 | |
71 @item | |
72 @code{minibuffer-local-ns-map} is similar, except that @key{SPC} exits | |
73 just like @key{RET}. This is used mainly for Mocklisp compatibility. | |
74 | |
75 @item | |
76 @code{minibuffer-local-completion-map} is for permissive completion. | |
77 | |
78 @item | |
79 @code{minibuffer-local-must-match-map} is for strict completion and | |
80 for cautious completion. | |
81 @end itemize | |
82 | |
83 @node Text from Minibuffer | |
84 @section Reading Text Strings with the Minibuffer | |
85 | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
86 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
|
87 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
|
88 primitive for minibuffer input is @code{read-from-minibuffer}; it can do |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
89 either one. |
6555 | 90 |
12098 | 91 In most cases, you should not call minibuffer input functions in the |
92 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
|
93 reading the arguments for a command, in the @code{interactive} |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
94 specification. @xref{Defining Commands}. |
12098 | 95 |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
96 @defun read-from-minibuffer prompt-string &optional initial-contents keymap read hist default inherit-input-method |
6555 | 97 This function is the most general way to get input through the |
98 minibuffer. By default, it accepts arbitrary text and returns it as a | |
99 string; however, if @var{read} is non-@code{nil}, then it uses | |
100 @code{read} to convert the text into a Lisp object (@pxref{Input | |
101 Functions}). | |
102 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
103 The first thing this function does is to activate a minibuffer and |
6555 | 104 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
|
105 string. Then the user can edit text in the minibuffer. |
6555 | 106 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
107 When the user types a command to exit the minibuffer, |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
108 @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
|
109 the minibuffer. Normally it returns a string containing that text. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
110 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
|
111 reads the text and returns the resulting Lisp object, unevaluated. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
112 (@xref{Input Functions}, for information about reading.) |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
113 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
114 The argument @var{default} specifies a default value to make available |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
115 through the history commands. It should be a string, or @code{nil}. If |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
116 @var{read} is non-@code{nil}, then @var{default} is also used as the |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
117 input to @code{read}, if the user enters empty input. However, in the |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
118 usual case (where @var{read} is @code{nil}), @code{read-from-minibuffer} |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
119 does not return @var{default} when the user enters empty input; it |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
120 returns an empty string, @code{""}. In this respect, it is different |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
121 from all the other minibuffer input functions in this chapter. |
6555 | 122 |
123 If @var{keymap} is non-@code{nil}, that keymap is the local keymap to | |
124 use in the minibuffer. If @var{keymap} is omitted or @code{nil}, the | |
125 value of @code{minibuffer-local-map} is used as the keymap. Specifying | |
126 a keymap is the most important way to customize the minibuffer for | |
127 various applications such as completion. | |
128 | |
129 The argument @var{hist} specifies which history list variable to use | |
130 for saving the input and for history commands used in the minibuffer. | |
131 It defaults to @code{minibuffer-history}. @xref{Minibuffer History}. | |
132 | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
133 If the variable @code{minibuffer-allow-text-properties} is |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
134 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
|
135 properties were present in the minibuffer. Otherwise all the text |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
136 properties are stripped when the value is returned. |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
137 |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
138 If the argument @var{inherit-input-method} is non-@code{nil}, then the |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
139 minibuffer inherits the current buffer's input method (@pxref{Input |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
140 Methods}) and the setting of @code{enable-multibyte-characters} |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
141 (@pxref{Text Representations}) from whichever buffer was current before |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
142 entering the minibuffer. |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
143 |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
144 If @var{initial-contents} is a string, @code{read-from-minibuffer} |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
145 inserts it into the minibuffer, leaving point at the end, before the |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
146 user starts to edit the text. The minibuffer appears with this text as |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
147 its initial contents. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
148 |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
149 Alternatively, @var{initial-contents} can be a cons cell of the form |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
150 @code{(@var{string} . @var{position})}. This means to insert |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
151 @var{string} in the minibuffer but put point @var{position} characters |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
152 from the beginning, rather than at the end. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
153 |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
154 @strong{Usage note:} The @var{initial-contents} argument and the |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
155 @var{default} argument are two alternative features for more or less the |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
156 same job. It does not make sense to use both features in a single call |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
157 to @code{read-from-minibuffer}. In general, we recommend using |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
158 @var{default}, since this permits the user to insert the default value |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
159 when it is wanted, but does not burden the user with deleting it from |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
160 the minibuffer on other occasions. |
6555 | 161 @end defun |
162 | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
163 @defun read-string prompt &optional initial history default inherit-input-method |
6555 | 164 This function reads a string from the minibuffer and returns it. The |
165 arguments @var{prompt} and @var{initial} are used as in | |
166 @code{read-from-minibuffer}. The keymap used is | |
167 @code{minibuffer-local-map}. | |
168 | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
169 The optional argument @var{history}, if non-nil, specifies a history |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
170 list and optionally the initial position in the list. The optional |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
171 argument @var{default} specifies a default value to return if the user |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
172 enters null input; it should be a string. The optional argument |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
173 @var{inherit-input-method} specifies whether to inherit the current |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
174 buffer's input method. |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
175 |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
176 This function is a simplified interface to the |
6555 | 177 @code{read-from-minibuffer} function: |
178 | |
179 @smallexample | |
180 @group | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
181 (read-string @var{prompt} @var{initial} @var{history} @var{default} @var{inherit}) |
6555 | 182 @equiv{} |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
183 (let ((value |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
184 (read-from-minibuffer @var{prompt} @var{initial} nil nil |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
185 @var{history} @var{default} @var{inherit}))) |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
186 (if (equal value "") |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
187 @var{default} |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
188 value)) |
6555 | 189 @end group |
190 @end smallexample | |
191 @end defun | |
192 | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
193 @defvar minibuffer-allow-text-properties |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
194 If this variable is non-@code{nil}, then @code{read-from-minibuffer} |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
195 strips all text properties from the string before returning the string. |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
196 Since all minibuffer input uses @code{read-from-minibuffer}, this |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
197 variable applies to all minibuffer input. |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
198 @end defvar |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
199 |
6555 | 200 @defvar minibuffer-local-map |
201 This is the default local keymap for reading from the minibuffer. By | |
202 default, it makes the following bindings: | |
203 | |
204 @table @asis | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
205 @item @kbd{C-j} |
6555 | 206 @code{exit-minibuffer} |
207 | |
208 @item @key{RET} | |
209 @code{exit-minibuffer} | |
210 | |
211 @item @kbd{C-g} | |
212 @code{abort-recursive-edit} | |
213 | |
214 @item @kbd{M-n} | |
215 @code{next-history-element} | |
216 | |
217 @item @kbd{M-p} | |
218 @code{previous-history-element} | |
219 | |
220 @item @kbd{M-r} | |
221 @code{next-matching-history-element} | |
222 | |
223 @item @kbd{M-s} | |
224 @code{previous-matching-history-element} | |
225 @end table | |
226 @end defvar | |
227 | |
228 @c In version 18, initial is required | |
229 @c Emacs 19 feature | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
230 @defun read-no-blanks-input prompt &optional initial inherit-input-method |
6555 | 231 This function reads a string from the minibuffer, but does not allow |
232 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
|
233 terminate the input. The arguments @var{prompt}, @var{initial}, and |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
234 @var{inherit-input-method} are used as in @code{read-from-minibuffer}. |
6555 | 235 |
236 This is a simplified interface to the @code{read-from-minibuffer} | |
237 function, and passes the value of the @code{minibuffer-local-ns-map} | |
238 keymap as the @var{keymap} argument for that function. Since the keymap | |
239 @code{minibuffer-local-ns-map} does not rebind @kbd{C-q}, it @emph{is} | |
240 possible to put a space into the string, by quoting it. | |
241 | |
242 @smallexample | |
243 @group | |
244 (read-no-blanks-input @var{prompt} @var{initial}) | |
245 @equiv{} | |
246 (read-from-minibuffer @var{prompt} @var{initial} minibuffer-local-ns-map) | |
247 @end group | |
248 @end smallexample | |
249 @end defun | |
250 | |
251 @defvar minibuffer-local-ns-map | |
252 This built-in variable is the keymap used as the minibuffer local keymap | |
253 in the function @code{read-no-blanks-input}. By default, it makes the | |
12098 | 254 following bindings, in addition to those of @code{minibuffer-local-map}: |
6555 | 255 |
256 @table @asis | |
257 @item @key{SPC} | |
258 @cindex @key{SPC} in minibuffer | |
259 @code{exit-minibuffer} | |
260 | |
261 @item @key{TAB} | |
262 @cindex @key{TAB} in minibuffer | |
263 @code{exit-minibuffer} | |
264 | |
265 @item @kbd{?} | |
266 @cindex @kbd{?} in minibuffer | |
267 @code{self-insert-and-exit} | |
268 @end table | |
269 @end defvar | |
270 | |
271 @node Object from Minibuffer | |
272 @section Reading Lisp Objects with the Minibuffer | |
273 | |
274 This section describes functions for reading Lisp objects with the | |
275 minibuffer. | |
276 | |
277 @defun read-minibuffer prompt &optional initial | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
278 This function reads a Lisp object using the minibuffer, and returns it |
6555 | 279 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
|
280 used as in @code{read-from-minibuffer}. |
6555 | 281 |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
282 This is a simplified interface to the |
6555 | 283 @code{read-from-minibuffer} function: |
284 | |
285 @smallexample | |
286 @group | |
287 (read-minibuffer @var{prompt} @var{initial}) | |
288 @equiv{} | |
289 (read-from-minibuffer @var{prompt} @var{initial} nil t) | |
290 @end group | |
291 @end smallexample | |
292 | |
293 Here is an example in which we supply the string @code{"(testing)"} as | |
294 initial input: | |
295 | |
296 @smallexample | |
297 @group | |
298 (read-minibuffer | |
299 "Enter an expression: " (format "%s" '(testing))) | |
300 | |
301 ;; @r{Here is how the minibuffer is displayed:} | |
302 @end group | |
303 | |
304 @group | |
305 ---------- Buffer: Minibuffer ---------- | |
306 Enter an expression: (testing)@point{} | |
307 ---------- Buffer: Minibuffer ---------- | |
308 @end group | |
309 @end smallexample | |
310 | |
311 @noindent | |
312 The user can type @key{RET} immediately to use the initial input as a | |
313 default, or can edit the input. | |
314 @end defun | |
315 | |
316 @defun eval-minibuffer prompt &optional initial | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
317 This function reads a Lisp expression using the minibuffer, evaluates |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
318 it, then returns the result. The arguments @var{prompt} and |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
319 @var{initial} are used as in @code{read-from-minibuffer}. |
6555 | 320 |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
321 This function simply evaluates the result of a call to |
6555 | 322 @code{read-minibuffer}: |
323 | |
324 @smallexample | |
325 @group | |
326 (eval-minibuffer @var{prompt} @var{initial}) | |
327 @equiv{} | |
328 (eval (read-minibuffer @var{prompt} @var{initial})) | |
329 @end group | |
330 @end smallexample | |
331 @end defun | |
332 | |
333 @defun edit-and-eval-command prompt form | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
334 This function reads a Lisp expression in the minibuffer, and then |
6555 | 335 evaluates it. The difference between this command and |
336 @code{eval-minibuffer} is that here the initial @var{form} is not | |
337 optional and it is treated as a Lisp object to be converted to printed | |
338 representation rather than as a string of text. It is printed with | |
339 @code{prin1}, so if it is a string, double-quote characters (@samp{"}) | |
340 appear in the initial text. @xref{Output Functions}. | |
341 | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
342 The first thing @code{edit-and-eval-command} does is to activate the |
6555 | 343 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
|
344 representation of @var{form} in the minibuffer, and lets the user edit it. |
6555 | 345 When the user exits the minibuffer, the edited text is read with |
346 @code{read} and then evaluated. The resulting value becomes the value | |
347 of @code{edit-and-eval-command}. | |
348 | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
349 In the following example, we offer the user an expression with initial |
6555 | 350 text which is a valid form already: |
351 | |
352 @smallexample | |
353 @group | |
354 (edit-and-eval-command "Please edit: " '(forward-word 1)) | |
355 | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
356 ;; @r{After evaluation of the preceding expression,} |
6555 | 357 ;; @r{the following appears in the minibuffer:} |
358 @end group | |
359 | |
360 @group | |
361 ---------- Buffer: Minibuffer ---------- | |
362 Please edit: (forward-word 1)@point{} | |
363 ---------- Buffer: Minibuffer ---------- | |
364 @end group | |
365 @end smallexample | |
366 | |
367 @noindent | |
368 Typing @key{RET} right away would exit the minibuffer and evaluate the | |
369 expression, thus moving point forward one word. | |
370 @code{edit-and-eval-command} returns @code{nil} in this example. | |
371 @end defun | |
372 | |
373 @node Minibuffer History | |
374 @section Minibuffer History | |
375 @cindex minibuffer history | |
376 @cindex history list | |
377 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
378 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
|
379 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
|
380 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
|
381 (previous inputs), most recent first. |
6555 | 382 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
383 There are many separate history lists, used for different kinds of |
6555 | 384 inputs. It's the Lisp programmer's job to specify the right history |
385 list for each use of the minibuffer. | |
386 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
387 The basic minibuffer input functions @code{read-from-minibuffer} and |
6555 | 388 @code{completing-read} both accept an optional argument named @var{hist} |
389 which is how you specify the history list. Here are the possible | |
390 values: | |
391 | |
392 @table @asis | |
393 @item @var{variable} | |
394 Use @var{variable} (a symbol) as the history list. | |
395 | |
396 @item (@var{variable} . @var{startpos}) | |
397 Use @var{variable} (a symbol) as the history list, and assume that the | |
398 initial history position is @var{startpos} (an integer, counting from | |
399 zero which specifies the most recent element of the history). | |
400 | |
401 If you specify @var{startpos}, then you should also specify that element | |
402 of the history as the initial minibuffer contents, for consistency. | |
403 @end table | |
404 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
405 If you don't specify @var{hist}, then the default history list |
6555 | 406 @code{minibuffer-history} is used. For other standard history lists, |
407 see below. You can also create your own history list variable; just | |
408 initialize it to @code{nil} before the first use. | |
409 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
410 Both @code{read-from-minibuffer} and @code{completing-read} add new |
6555 | 411 elements to the history list automatically, and provide commands to |
412 allow the user to reuse items on the list. The only thing your program | |
413 needs to do to use a history list is to initialize it and to pass its | |
414 name to the input functions when you wish. But it is safe to modify the | |
415 list by hand when the minibuffer input functions are not using it. | |
416 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
417 Here are some of the standard minibuffer history list variables: |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
418 |
6555 | 419 @defvar minibuffer-history |
420 The default history list for minibuffer history input. | |
421 @end defvar | |
422 | |
423 @defvar query-replace-history | |
424 A history list for arguments to @code{query-replace} (and similar | |
425 arguments to other commands). | |
426 @end defvar | |
427 | |
428 @defvar file-name-history | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
429 A history list for file-name arguments. |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
430 @end defvar |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
431 |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
432 @defvar buffer-name-history |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
433 @tindex buffer-name-history |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
434 A history list for buffer-name arguments. |
6555 | 435 @end defvar |
436 | |
437 @defvar regexp-history | |
438 A history list for regular expression arguments. | |
439 @end defvar | |
440 | |
441 @defvar extended-command-history | |
442 A history list for arguments that are names of extended commands. | |
443 @end defvar | |
444 | |
445 @defvar shell-command-history | |
446 A history list for arguments that are shell commands. | |
447 @end defvar | |
448 | |
449 @defvar read-expression-history | |
450 A history list for arguments that are Lisp expressions to evaluate. | |
451 @end defvar | |
452 | |
453 @node Completion | |
454 @section Completion | |
455 @cindex completion | |
456 | |
457 @dfn{Completion} is a feature that fills in the rest of a name | |
458 starting from an abbreviation for it. Completion works by comparing the | |
459 user's input against a list of valid names and determining how much of | |
460 the name is determined uniquely by what the user has typed. For | |
461 example, when you type @kbd{C-x b} (@code{switch-to-buffer}) and then | |
462 type the first few letters of the name of the buffer to which you wish | |
463 to switch, and then type @key{TAB} (@code{minibuffer-complete}), Emacs | |
464 extends the name as far as it can. | |
465 | |
466 Standard Emacs commands offer completion for names of symbols, files, | |
467 buffers, and processes; with the functions in this section, you can | |
468 implement completion for other kinds of names. | |
469 | |
470 The @code{try-completion} function is the basic primitive for | |
471 completion: it returns the longest determined completion of a given | |
472 initial string, with a given set of strings to match against. | |
473 | |
474 The function @code{completing-read} provides a higher-level interface | |
475 for completion. A call to @code{completing-read} specifies how to | |
476 determine the list of valid names. The function then activates the | |
477 minibuffer with a local keymap that binds a few keys to commands useful | |
478 for completion. Other functions provide convenient simple interfaces | |
479 for reading certain kinds of names with completion. | |
480 | |
481 @menu | |
482 * Basic Completion:: Low-level functions for completing strings. | |
483 (These are too low level to use the minibuffer.) | |
484 * Minibuffer Completion:: Invoking the minibuffer with completion. | |
485 * Completion Commands:: Minibuffer commands that do completion. | |
486 * High-Level Completion:: Convenient special cases of completion | |
487 (reading buffer name, file name, etc.) | |
488 * Reading File Names:: Using completion to read file names. | |
489 * Programmed Completion:: Finding the completions for a given file name. | |
490 @end menu | |
491 | |
492 @node Basic Completion | |
493 @subsection Basic Completion Functions | |
494 | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
495 The two functions @code{try-completion} and @code{all-completions} |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
496 have nothing in themselves to do with minibuffers. We describe them in |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
497 this chapter so as to keep them near the higher-level completion |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
498 features that do use the minibuffer. |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
499 |
6555 | 500 @defun try-completion string collection &optional predicate |
501 This function returns the longest common substring of all possible | |
502 completions of @var{string} in @var{collection}. The value of | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
503 @var{collection} must be an alist, an obarray, or a function that |
6555 | 504 implements a virtual set of strings (see below). |
505 | |
506 Completion compares @var{string} against each of the permissible | |
507 completions specified by @var{collection}; if the beginning of the | |
508 permissible completion equals @var{string}, it matches. If no permissible | |
509 completions match, @code{try-completion} returns @code{nil}. If only | |
510 one permissible completion matches, and the match is exact, then | |
511 @code{try-completion} returns @code{t}. Otherwise, the value is the | |
512 longest initial sequence common to all the permissible completions that | |
513 match. | |
514 | |
515 If @var{collection} is an alist (@pxref{Association Lists}), the | |
516 @sc{car}s of the alist elements form the set of permissible completions. | |
517 | |
518 @cindex obarray in completion | |
519 If @var{collection} is an obarray (@pxref{Creating Symbols}), the names | |
520 of all symbols in the obarray form the set of permissible completions. The | |
521 global variable @code{obarray} holds an obarray containing the names of | |
522 all interned Lisp symbols. | |
523 | |
524 Note that the only valid way to make a new obarray is to create it | |
525 empty and then add symbols to it one by one using @code{intern}. | |
526 Also, you cannot intern a given symbol in more than one obarray. | |
527 | |
528 If the argument @var{predicate} is non-@code{nil}, then it must be a | |
529 function of one argument. It is used to test each possible match, and | |
530 the match is accepted only if @var{predicate} returns non-@code{nil}. | |
531 The argument given to @var{predicate} is either a cons cell from the alist | |
532 (the @sc{car} of which is a string) or else it is a symbol (@emph{not} a | |
533 symbol name) from the obarray. | |
534 | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
535 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
|
536 the function is solely responsible for performing completion; |
6555 | 537 @code{try-completion} returns whatever this function returns. The |
538 function is called with three arguments: @var{string}, @var{predicate} | |
539 and @code{nil}. (The reason for the third argument is so that the same | |
540 function can be used in @code{all-completions} and do the appropriate | |
541 thing in either case.) @xref{Programmed Completion}. | |
542 | |
543 In the first of the following examples, the string @samp{foo} is | |
544 matched by three of the alist @sc{car}s. All of the matches begin with | |
545 the characters @samp{fooba}, so that is the result. In the second | |
546 example, there is only one possible match, and it is exact, so the value | |
547 is @code{t}. | |
548 | |
549 @smallexample | |
550 @group | |
551 (try-completion | |
552 "foo" | |
553 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))) | |
554 @result{} "fooba" | |
555 @end group | |
556 | |
557 @group | |
558 (try-completion "foo" '(("barfoo" 2) ("foo" 3))) | |
559 @result{} t | |
560 @end group | |
561 @end smallexample | |
562 | |
563 In the following example, numerous symbols begin with the characters | |
564 @samp{forw}, and all of them begin with the word @samp{forward}. In | |
565 most of the symbols, this is followed with a @samp{-}, but not in all, | |
566 so no more than @samp{forward} can be completed. | |
567 | |
568 @smallexample | |
569 @group | |
570 (try-completion "forw" obarray) | |
571 @result{} "forward" | |
572 @end group | |
573 @end smallexample | |
574 | |
575 Finally, in the following example, only two of the three possible | |
576 matches pass the predicate @code{test} (the string @samp{foobaz} is | |
577 too short). Both of those begin with the string @samp{foobar}. | |
578 | |
579 @smallexample | |
580 @group | |
581 (defun test (s) | |
582 (> (length (car s)) 6)) | |
583 @result{} test | |
584 @end group | |
585 @group | |
586 (try-completion | |
587 "foo" | |
588 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4)) | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
589 'test) |
6555 | 590 @result{} "foobar" |
591 @end group | |
592 @end smallexample | |
593 @end defun | |
594 | |
12067 | 595 @defun all-completions string collection &optional predicate nospace |
6555 | 596 This function returns a list of all possible completions of |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
597 @var{string}. The arguments to this function are the same as those of |
6555 | 598 @code{try-completion}. |
599 | |
600 If @var{collection} is a function, it is called with three arguments: | |
601 @var{string}, @var{predicate} and @code{t}; then @code{all-completions} | |
602 returns whatever the function returns. @xref{Programmed Completion}. | |
603 | |
12067 | 604 If @var{nospace} is non-@code{nil}, completions that start with a space |
605 are ignored unless @var{string} also starts with a space. | |
606 | |
6555 | 607 Here is an example, using the function @code{test} shown in the |
608 example for @code{try-completion}: | |
609 | |
610 @smallexample | |
611 @group | |
612 (defun test (s) | |
613 (> (length (car s)) 6)) | |
614 @result{} test | |
615 @end group | |
616 | |
617 @group | |
618 (all-completions | |
619 "foo" | |
620 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4)) | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
621 'test) |
6555 | 622 @result{} ("foobar1" "foobar2") |
623 @end group | |
624 @end smallexample | |
625 @end defun | |
626 | |
627 @defvar completion-ignore-case | |
628 If the value of this variable is | |
629 non-@code{nil}, Emacs does not consider case significant in completion. | |
630 @end defvar | |
631 | |
632 @node Minibuffer Completion | |
633 @subsection Completion and the Minibuffer | |
634 | |
635 This section describes the basic interface for reading from the | |
636 minibuffer with completion. | |
637 | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
638 @defun completing-read prompt collection &optional predicate require-match initial hist default inherit-input-method |
6555 | 639 This function reads a string in the minibuffer, assisting the user by |
640 providing completion. It activates the minibuffer with prompt | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
641 @var{prompt}, which must be a string. |
6555 | 642 |
643 The actual completion is done by passing @var{collection} and | |
644 @var{predicate} to the function @code{try-completion}. This happens in | |
645 certain commands bound in the local keymaps used for completion. | |
646 | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
647 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
|
648 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
|
649 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
|
650 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
|
651 @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
|
652 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
|
653 |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
654 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
|
655 @var{require-match}; in that case, @code{completing-read} returns |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
656 @var{default}. The value of @var{default} (if non-@code{nil}) is also |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
657 available to the user through the history commands. |
6555 | 658 |
8753 | 659 The user can exit with null input by typing @key{RET} with an empty |
16238
75913ae7ac7e
Clarify how completing-read returns an empty string.
Richard M. Stallman <rms@gnu.org>
parents:
16157
diff
changeset
|
660 minibuffer. Then @code{completing-read} returns @code{""}. This is how |
75913ae7ac7e
Clarify how completing-read returns an empty string.
Richard M. Stallman <rms@gnu.org>
parents:
16157
diff
changeset
|
661 the user requests whatever default the command uses for the value being |
75913ae7ac7e
Clarify how completing-read returns an empty string.
Richard M. Stallman <rms@gnu.org>
parents:
16157
diff
changeset
|
662 read. The user can return using @key{RET} in this way regardless of the |
75913ae7ac7e
Clarify how completing-read returns an empty string.
Richard M. Stallman <rms@gnu.org>
parents:
16157
diff
changeset
|
663 value of @var{require-match}, and regardless of whether the empty string |
75913ae7ac7e
Clarify how completing-read returns an empty string.
Richard M. Stallman <rms@gnu.org>
parents:
16157
diff
changeset
|
664 is included in @var{collection}. |
8753 | 665 |
6555 | 666 The function @code{completing-read} works by calling |
667 @code{read-minibuffer}. It uses @code{minibuffer-local-completion-map} | |
668 as the keymap if @var{require-match} is @code{nil}, and uses | |
669 @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
|
670 non-@code{nil}. @xref{Completion Commands}. |
6555 | 671 |
672 The argument @var{hist} specifies which history list variable to use for | |
673 saving the input and for minibuffer history commands. It defaults to | |
674 @code{minibuffer-history}. @xref{Minibuffer History}. | |
675 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
676 If @var{initial} is non-@code{nil}, @code{completing-read} inserts it |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
677 into the minibuffer as part of the input. Then it allows the user to |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
678 edit the input, providing several commands to attempt completion. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
679 In most cases, we recommend using @var{default}, and not @var{initial}. |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
680 |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
681 If the argument @var{inherit-input-method} is non-@code{nil}, then the |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
682 minibuffer inherits the current buffer's input method (@pxref{Input |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
683 Methods}) and the setting of @code{enable-multibyte-characters} |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
684 (@pxref{Text Representations}) from whichever buffer was current before |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
685 entering the minibuffer. |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
686 |
6555 | 687 Completion ignores case when comparing the input against the possible |
688 matches, if the built-in variable @code{completion-ignore-case} is | |
689 non-@code{nil}. @xref{Basic Completion}. | |
690 | |
691 Here's an example of using @code{completing-read}: | |
692 | |
693 @smallexample | |
694 @group | |
695 (completing-read | |
696 "Complete a foo: " | |
697 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4)) | |
698 nil t "fo") | |
699 @end group | |
700 | |
701 @group | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
702 ;; @r{After evaluation of the preceding expression,} |
6555 | 703 ;; @r{the following appears in the minibuffer:} |
704 | |
705 ---------- Buffer: Minibuffer ---------- | |
706 Complete a foo: fo@point{} | |
707 ---------- Buffer: Minibuffer ---------- | |
708 @end group | |
709 @end smallexample | |
710 | |
711 @noindent | |
712 If the user then types @kbd{@key{DEL} @key{DEL} b @key{RET}}, | |
713 @code{completing-read} returns @code{barfoo}. | |
714 | |
715 The @code{completing-read} function binds three variables to pass | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
716 information to the commands that actually do completion. These |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
717 variables are @code{minibuffer-completion-table}, |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
718 @code{minibuffer-completion-predicate} and |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
719 @code{minibuffer-completion-confirm}. For more information about them, |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
720 see @ref{Completion Commands}. |
6555 | 721 @end defun |
722 | |
723 @node Completion Commands | |
724 @subsection Minibuffer Commands That Do Completion | |
725 | |
726 This section describes the keymaps, commands and user options used in | |
727 the minibuffer to do completion. | |
728 | |
729 @defvar minibuffer-local-completion-map | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
730 @code{completing-read} uses this value as the local keymap when an |
6555 | 731 exact match of one of the completions is not required. By default, this |
732 keymap makes the following bindings: | |
733 | |
734 @table @asis | |
735 @item @kbd{?} | |
736 @code{minibuffer-completion-help} | |
737 | |
738 @item @key{SPC} | |
739 @code{minibuffer-complete-word} | |
740 | |
741 @item @key{TAB} | |
742 @code{minibuffer-complete} | |
743 @end table | |
744 | |
745 @noindent | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
746 with other characters bound as in @code{minibuffer-local-map} |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
747 (@pxref{Text from Minibuffer}). |
6555 | 748 @end defvar |
749 | |
750 @defvar minibuffer-local-must-match-map | |
751 @code{completing-read} uses this value as the local keymap when an | |
752 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
|
753 are bound to @code{exit-minibuffer}, the command that exits the |
6555 | 754 minibuffer unconditionally. By default, this keymap makes the following |
755 bindings: | |
756 | |
757 @table @asis | |
758 @item @kbd{?} | |
759 @code{minibuffer-completion-help} | |
760 | |
761 @item @key{SPC} | |
762 @code{minibuffer-complete-word} | |
763 | |
764 @item @key{TAB} | |
765 @code{minibuffer-complete} | |
766 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
767 @item @kbd{C-j} |
6555 | 768 @code{minibuffer-complete-and-exit} |
769 | |
770 @item @key{RET} | |
771 @code{minibuffer-complete-and-exit} | |
772 @end table | |
773 | |
774 @noindent | |
775 with other characters bound as in @code{minibuffer-local-map}. | |
776 @end defvar | |
777 | |
778 @defvar minibuffer-completion-table | |
779 The value of this variable is the alist or obarray used for completion | |
780 in the minibuffer. This is the global variable that contains what | |
781 @code{completing-read} passes to @code{try-completion}. It is used by | |
782 minibuffer completion commands such as @code{minibuffer-complete-word}. | |
783 @end defvar | |
784 | |
785 @defvar minibuffer-completion-predicate | |
786 This variable's value is the predicate that @code{completing-read} | |
787 passes to @code{try-completion}. The variable is also used by the other | |
788 minibuffer completion functions. | |
789 @end defvar | |
790 | |
791 @deffn Command minibuffer-complete-word | |
792 This function completes the minibuffer contents by at most a single | |
793 word. Even if the minibuffer contents have only one completion, | |
794 @code{minibuffer-complete-word} does not add any characters beyond the | |
795 first character that is not a word constituent. @xref{Syntax Tables}. | |
796 @end deffn | |
797 | |
798 @deffn Command minibuffer-complete | |
799 This function completes the minibuffer contents as far as possible. | |
800 @end deffn | |
801 | |
802 @deffn Command minibuffer-complete-and-exit | |
803 This function completes the minibuffer contents, and exits if | |
804 confirmation is not required, i.e., if | |
13319
ce09d77f76a6
Minor fix in minibuffer-complete-and-exit.
Richard M. Stallman <rms@gnu.org>
parents:
12226
diff
changeset
|
805 @code{minibuffer-completion-confirm} is @code{nil}. If confirmation |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
806 @emph{is} required, it is given by repeating this command |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
807 immediately---the command is programmed to work without confirmation |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
808 when run twice in succession. |
6555 | 809 @end deffn |
810 | |
811 @defvar minibuffer-completion-confirm | |
812 When the value of this variable is non-@code{nil}, Emacs asks for | |
813 confirmation of a completion before exiting the minibuffer. The | |
814 function @code{minibuffer-complete-and-exit} checks the value of this | |
815 variable before it exits. | |
816 @end defvar | |
817 | |
818 @deffn Command minibuffer-completion-help | |
819 This function creates a list of the possible completions of the | |
820 current minibuffer contents. It works by calling @code{all-completions} | |
821 using the value of the variable @code{minibuffer-completion-table} as | |
822 the @var{collection} argument, and the value of | |
823 @code{minibuffer-completion-predicate} as the @var{predicate} argument. | |
824 The list of completions is displayed as text in a buffer named | |
825 @samp{*Completions*}. | |
826 @end deffn | |
827 | |
828 @defun display-completion-list completions | |
829 This function displays @var{completions} to the stream in | |
7337
cd57cd335fff
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7221
diff
changeset
|
830 @code{standard-output}, usually a buffer. (@xref{Read and Print}, for more |
6555 | 831 information about streams.) The argument @var{completions} is normally |
832 a list of completions just returned by @code{all-completions}, but it | |
833 does not have to be. Each element may be a symbol or a string, either | |
834 of which is simply printed, or a list of two strings, which is printed | |
835 as if the strings were concatenated. | |
836 | |
837 This function is called by @code{minibuffer-completion-help}. The | |
838 most common way to use it is together with | |
839 @code{with-output-to-temp-buffer}, like this: | |
840 | |
841 @example | |
842 (with-output-to-temp-buffer "*Completions*" | |
843 (display-completion-list | |
844 (all-completions (buffer-string) my-alist))) | |
845 @end example | |
846 @end defun | |
847 | |
848 @defopt completion-auto-help | |
849 If this variable is non-@code{nil}, the completion commands | |
850 automatically display a list of possible completions whenever nothing | |
851 can be completed because the next character is not uniquely determined. | |
852 @end defopt | |
853 | |
854 @node High-Level Completion | |
855 @subsection High-Level Completion Functions | |
856 | |
857 This section describes the higher-level convenient functions for | |
858 reading certain sorts of names with completion. | |
859 | |
12098 | 860 In most cases, you should not call these functions in the middle of a |
861 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
|
862 reading the arguments for a command, in the @code{interactive} |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
863 specification. @xref{Defining Commands}. |
12098 | 864 |
6555 | 865 @defun read-buffer prompt &optional default existing |
866 This function reads the name of a buffer and returns it as a string. | |
867 The argument @var{default} is the default name to use, the value to | |
868 return if the user exits with an empty minibuffer. If non-@code{nil}, | |
869 it should be a string or a buffer. It is mentioned in the prompt, but | |
870 is not inserted in the minibuffer as initial input. | |
871 | |
872 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
|
873 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
|
874 do not exit if the text is not valid, and @key{RET} does completion to |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
875 attempt to find a valid name. (However, @var{default} is not checked |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
876 for validity; it is returned, whatever it is, if the user exits with the |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
877 minibuffer empty.) |
6555 | 878 |
879 In the following example, the user enters @samp{minibuffer.t}, and | |
880 then types @key{RET}. The argument @var{existing} is @code{t}, and the | |
881 only buffer name starting with the given input is | |
882 @samp{minibuffer.texi}, so that name is the value. | |
883 | |
884 @example | |
885 (read-buffer "Buffer name? " "foo" t) | |
886 @group | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
887 ;; @r{After evaluation of the preceding expression,} |
6555 | 888 ;; @r{the following prompt appears,} |
889 ;; @r{with an empty minibuffer:} | |
890 @end group | |
891 | |
892 @group | |
893 ---------- Buffer: Minibuffer ---------- | |
894 Buffer name? (default foo) @point{} | |
895 ---------- Buffer: Minibuffer ---------- | |
896 @end group | |
897 | |
898 @group | |
899 ;; @r{The user types @kbd{minibuffer.t @key{RET}}.} | |
900 @result{} "minibuffer.texi" | |
901 @end group | |
902 @end example | |
903 @end defun | |
904 | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
905 @defvar read-buffer-function |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
906 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
|
907 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
|
908 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
|
909 @code{iswitchb} package to read it. |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
910 @end defvar |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
911 |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
912 @defun read-command prompt &optional default |
6555 | 913 This function reads the name of a command and returns it as a Lisp |
914 symbol. The argument @var{prompt} is used as in | |
915 @code{read-from-minibuffer}. Recall that a command is anything for | |
916 which @code{commandp} returns @code{t}, and a command name is a symbol | |
917 for which @code{commandp} returns @code{t}. @xref{Interactive Call}. | |
918 | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
919 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
|
920 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
|
921 @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
|
922 @code{nil}, that means no default has been specified; then if the user |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
923 enters null input, the return value is @code{nil}. |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
924 |
6555 | 925 @example |
926 (read-command "Command name? ") | |
927 | |
928 @group | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
929 ;; @r{After evaluation of the preceding expression,} |
6555 | 930 ;; @r{the following prompt appears with an empty minibuffer:} |
931 @end group | |
932 | |
933 @group | |
934 ---------- Buffer: Minibuffer ---------- | |
935 Command name? | |
936 ---------- Buffer: Minibuffer ---------- | |
937 @end group | |
938 @end example | |
939 | |
940 @noindent | |
941 If the user types @kbd{forward-c @key{RET}}, then this function returns | |
942 @code{forward-char}. | |
943 | |
16736
981e116b4ac6
Minor cleanups for overfull hboxes.
Richard M. Stallman <rms@gnu.org>
parents:
16238
diff
changeset
|
944 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
|
945 @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
|
946 complete in the set of extant Lisp symbols, and it uses the |
6555 | 947 @code{commandp} predicate so as to accept only command names: |
948 | |
949 @cindex @code{commandp} example | |
950 @example | |
951 @group | |
952 (read-command @var{prompt}) | |
953 @equiv{} | |
954 (intern (completing-read @var{prompt} obarray | |
955 'commandp t nil)) | |
956 @end group | |
957 @end example | |
958 @end defun | |
959 | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
960 @defun read-variable prompt &optional default |
6555 | 961 This function reads the name of a user variable and returns it as a |
962 symbol. | |
963 | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
964 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
|
965 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
|
966 @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
|
967 is @code{nil}, that means no default has been specified; then if the |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
968 user enters null input, the return value is @code{nil}. |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
969 |
6555 | 970 @example |
971 @group | |
972 (read-variable "Variable name? ") | |
973 | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
974 ;; @r{After evaluation of the preceding expression,} |
6555 | 975 ;; @r{the following prompt appears,} |
976 ;; @r{with an empty minibuffer:} | |
977 @end group | |
978 | |
979 @group | |
980 ---------- Buffer: Minibuffer ---------- | |
981 Variable name? @point{} | |
982 ---------- Buffer: Minibuffer ---------- | |
983 @end group | |
984 @end example | |
985 | |
986 @noindent | |
987 If the user then types @kbd{fill-p @key{RET}}, @code{read-variable} | |
988 returns @code{fill-prefix}. | |
989 | |
990 This function is similar to @code{read-command}, but uses the | |
991 predicate @code{user-variable-p} instead of @code{commandp}: | |
992 | |
993 @cindex @code{user-variable-p} example | |
994 @example | |
995 @group | |
996 (read-variable @var{prompt}) | |
997 @equiv{} | |
998 (intern | |
999 (completing-read @var{prompt} obarray | |
1000 'user-variable-p t nil)) | |
1001 @end group | |
1002 @end example | |
1003 @end defun | |
1004 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
1005 See also the functions @code{read-coding-system} and |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
1006 @code{read-non-nil-coding-system}, in @ref{Lisp and Coding Systems}. |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
1007 |
6555 | 1008 @node Reading File Names |
1009 @subsection Reading File Names | |
1010 | |
1011 Here is another high-level completion function, designed for reading a | |
1012 file name. It provides special features including automatic insertion | |
1013 of the default directory. | |
1014 | |
1015 @defun read-file-name prompt &optional directory default existing initial | |
1016 This function reads a file name in the minibuffer, prompting with | |
1017 @var{prompt} and providing completion. If @var{default} is | |
1018 non-@code{nil}, then the function returns @var{default} if the user just | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1019 types @key{RET}. @var{default} is not checked for validity; it is |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1020 returned, whatever it is, if the user exits with the minibuffer empty. |
6555 | 1021 |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1022 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
|
1023 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
|
1024 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
|
1025 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
|
1026 @key{RET} also requires confirmation after completion. If |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1027 @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
|
1028 acceptable. |
6555 | 1029 |
1030 The argument @var{directory} specifies the directory to use for | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1031 completion of relative file names. If @code{insert-default-directory} |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1032 is non-@code{nil}, @var{directory} is also inserted in the minibuffer as |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1033 initial input. It defaults to the current buffer's value of |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1034 @code{default-directory}. |
6555 | 1035 |
1036 @c Emacs 19 feature | |
1037 If you specify @var{initial}, that is an initial file name to insert in | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1038 the buffer (after with @var{directory}, if that is inserted). In this |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1039 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
|
1040 @var{initial} is @code{nil}---don't insert any file name. To see what |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
1041 @var{initial} does, try the command @kbd{C-x C-v}. @strong{Note:} we |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
1042 recommend using @var{default} rather than @var{initial} in most cases. |
6555 | 1043 |
1044 Here is an example: | |
1045 | |
1046 @example | |
1047 @group | |
1048 (read-file-name "The file is ") | |
1049 | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1050 ;; @r{After evaluation of the preceding expression,} |
6555 | 1051 ;; @r{the following appears in the minibuffer:} |
1052 @end group | |
1053 | |
1054 @group | |
1055 ---------- Buffer: Minibuffer ---------- | |
1056 The file is /gp/gnu/elisp/@point{} | |
1057 ---------- Buffer: Minibuffer ---------- | |
1058 @end group | |
1059 @end example | |
1060 | |
1061 @noindent | |
1062 Typing @kbd{manual @key{TAB}} results in the following: | |
1063 | |
1064 @example | |
1065 @group | |
1066 ---------- Buffer: Minibuffer ---------- | |
1067 The file is /gp/gnu/elisp/manual.texi@point{} | |
1068 ---------- Buffer: Minibuffer ---------- | |
1069 @end group | |
1070 @end example | |
1071 | |
1072 @c Wordy to avoid overfull hbox in smallbook mode. | |
1073 @noindent | |
1074 If the user types @key{RET}, @code{read-file-name} returns the file name | |
1075 as the string @code{"/gp/gnu/elisp/manual.texi"}. | |
1076 @end defun | |
1077 | |
1078 @defopt insert-default-directory | |
1079 This variable is used by @code{read-file-name}. Its value controls | |
1080 whether @code{read-file-name} starts by placing the name of the default | |
1081 directory in the minibuffer, plus the initial file name if any. If the | |
1082 value of this variable is @code{nil}, then @code{read-file-name} does | |
12098 | 1083 not place any initial input in the minibuffer (unless you specify |
1084 initial input with the @var{initial} argument). In that case, the | |
6555 | 1085 default directory is still used for completion of relative file names, |
1086 but is not displayed. | |
1087 | |
1088 For example: | |
1089 | |
1090 @example | |
1091 @group | |
1092 ;; @r{Here the minibuffer starts out with the default directory.} | |
1093 (let ((insert-default-directory t)) | |
1094 (read-file-name "The file is ")) | |
1095 @end group | |
1096 | |
1097 @group | |
1098 ---------- Buffer: Minibuffer ---------- | |
1099 The file is ~lewis/manual/@point{} | |
1100 ---------- Buffer: Minibuffer ---------- | |
1101 @end group | |
1102 | |
1103 @group | |
1104 ;; @r{Here the minibuffer is empty and only the prompt} | |
1105 ;; @r{appears on its line.} | |
1106 (let ((insert-default-directory nil)) | |
1107 (read-file-name "The file is ")) | |
1108 @end group | |
1109 | |
1110 @group | |
1111 ---------- Buffer: Minibuffer ---------- | |
1112 The file is @point{} | |
1113 ---------- Buffer: Minibuffer ---------- | |
1114 @end group | |
1115 @end example | |
1116 @end defopt | |
1117 | |
1118 @node Programmed Completion | |
1119 @subsection Programmed Completion | |
1120 @cindex programmed completion | |
1121 | |
1122 Sometimes it is not possible to create an alist or an obarray | |
1123 containing all the intended possible completions. In such a case, you | |
1124 can supply your own function to compute the completion of a given string. | |
1125 This is called @dfn{programmed completion}. | |
1126 | |
1127 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
|
1128 @var{collection} argument to @code{completing-read}. The function |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1129 @code{completing-read} arranges to pass your completion function along |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1130 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
|
1131 your function do all the work. |
6555 | 1132 |
1133 The completion function should accept three arguments: | |
1134 | |
1135 @itemize @bullet | |
1136 @item | |
1137 The string to be completed. | |
1138 | |
1139 @item | |
1140 The predicate function to filter possible matches, or @code{nil} if | |
1141 none. Your function should call the predicate for each possible match, | |
1142 and ignore the possible match if the predicate returns @code{nil}. | |
1143 | |
1144 @item | |
1145 A flag specifying the type of operation. | |
1146 @end itemize | |
1147 | |
1148 There are three flag values for three operations: | |
1149 | |
1150 @itemize @bullet | |
1151 @item | |
1152 @code{nil} specifies @code{try-completion}. The completion function | |
1153 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
|
1154 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
|
1155 matches no possibility. |
1713fe640e41
Clarify value returned by programmed completion function.
Richard M. Stallman <rms@gnu.org>
parents:
15768
diff
changeset
|
1156 |
1713fe640e41
Clarify value returned by programmed completion function.
Richard M. Stallman <rms@gnu.org>
parents:
15768
diff
changeset
|
1157 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
|
1158 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
|
1159 @code{t}. |
6555 | 1160 |
1161 @item | |
1162 @code{t} specifies @code{all-completions}. The completion function | |
1163 should return a list of all possible completions of the specified | |
1164 string. | |
1165 | |
1166 @item | |
1167 @code{lambda} specifies a test for an exact match. The completion | |
1168 function should return @code{t} if the specified string is an exact | |
1169 match for some possibility; @code{nil} otherwise. | |
1170 @end itemize | |
1171 | |
1172 It would be consistent and clean for completion functions to allow | |
12098 | 1173 lambda expressions (lists that are functions) as well as function |
6555 | 1174 symbols as @var{collection}, but this is impossible. Lists as |
1175 completion tables are already assigned another meaning---as alists. It | |
1176 would be unreliable to fail to handle an alist normally because it is | |
1177 also a possible function. So you must arrange for any function you wish | |
1178 to use for completion to be encapsulated in a symbol. | |
1179 | |
1180 Emacs uses programmed completion when completing file names. | |
1181 @xref{File Name Completion}. | |
1182 | |
1183 @node Yes-or-No Queries | |
1184 @section Yes-or-No Queries | |
1185 @cindex asking the user questions | |
1186 @cindex querying the user | |
1187 @cindex yes-or-no questions | |
1188 | |
1189 This section describes functions used to ask the user a yes-or-no | |
1190 question. The function @code{y-or-n-p} can be answered with a single | |
1191 character; it is useful for questions where an inadvertent wrong answer | |
1192 will not have serious consequences. @code{yes-or-no-p} is suitable for | |
1193 more momentous questions, since it requires three or four characters to | |
1194 answer. | |
1195 | |
7337
cd57cd335fff
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7221
diff
changeset
|
1196 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
|
1197 using the mouse---more precisely, if @code{last-nonmenu-event} |
cd57cd335fff
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7221
diff
changeset
|
1198 (@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
|
1199 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
|
1200 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
|
1201 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
|
1202 the call. |
cd57cd335fff
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7221
diff
changeset
|
1203 |
6555 | 1204 Strictly speaking, @code{yes-or-no-p} uses the minibuffer and |
1205 @code{y-or-n-p} does not; but it seems best to describe them together. | |
1206 | |
1207 @defun y-or-n-p prompt | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1208 This function asks the user a question, expecting input in the echo |
6555 | 1209 area. It returns @code{t} if the user types @kbd{y}, @code{nil} if the |
1210 user types @kbd{n}. This function also accepts @key{SPC} to mean yes | |
1211 and @key{DEL} to mean no. It accepts @kbd{C-]} to mean ``quit'', like | |
1212 @kbd{C-g}, because the question might look like a minibuffer and for | |
1213 that reason the user might try to use @kbd{C-]} to get out. The answer | |
1214 is a single character, with no @key{RET} needed to terminate it. Upper | |
1215 and lower case are equivalent. | |
1216 | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1217 ``Asking the question'' means printing @var{prompt} in the echo area, |
6555 | 1218 followed by the string @w{@samp{(y or n) }}. If the input is not one of |
1219 the expected answers (@kbd{y}, @kbd{n}, @kbd{@key{SPC}}, | |
1220 @kbd{@key{DEL}}, or something that quits), the function responds | |
1221 @samp{Please answer y or n.}, and repeats the request. | |
1222 | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1223 This function does not actually use the minibuffer, since it does not |
6555 | 1224 allow editing of the answer. It actually uses the echo area (@pxref{The |
1225 Echo Area}), which uses the same screen space as the minibuffer. The | |
1226 cursor moves to the echo area while the question is being asked. | |
1227 | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1228 The answers and their meanings, even @samp{y} and @samp{n}, are not |
6555 | 1229 hardwired. The keymap @code{query-replace-map} specifies them. |
1230 @xref{Search and Replace}. | |
1231 | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1232 In the following example, the user first types @kbd{q}, which is |
6555 | 1233 invalid. At the next prompt the user types @kbd{y}. |
1234 | |
1235 @smallexample | |
1236 @group | |
1237 (y-or-n-p "Do you need a lift? ") | |
1238 | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1239 ;; @r{After evaluation of the preceding expression,} |
6555 | 1240 ;; @r{the following prompt appears in the echo area:} |
1241 @end group | |
1242 | |
1243 @group | |
1244 ---------- Echo area ---------- | |
1245 Do you need a lift? (y or n) | |
1246 ---------- Echo area ---------- | |
1247 @end group | |
1248 | |
1249 ;; @r{If the user then types @kbd{q}, the following appears:} | |
1250 | |
1251 @group | |
1252 ---------- Echo area ---------- | |
1253 Please answer y or n. Do you need a lift? (y or n) | |
1254 ---------- Echo area ---------- | |
1255 @end group | |
1256 | |
1257 ;; @r{When the user types a valid answer,} | |
1258 ;; @r{it is displayed after the question:} | |
1259 | |
1260 @group | |
1261 ---------- Echo area ---------- | |
1262 Do you need a lift? (y or n) y | |
1263 ---------- Echo area ---------- | |
1264 @end group | |
1265 @end smallexample | |
1266 | |
1267 @noindent | |
1268 We show successive lines of echo area messages, but only one actually | |
1269 appears on the screen at a time. | |
1270 @end defun | |
1271 | |
15768
b913a75fddee
Add y-or-n-p-with-timeout.
Richard M. Stallman <rms@gnu.org>
parents:
13319
diff
changeset
|
1272 @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
|
1273 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
|
1274 @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
|
1275 @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
|
1276 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
|
1277 @end defun |
b913a75fddee
Add y-or-n-p-with-timeout.
Richard M. Stallman <rms@gnu.org>
parents:
13319
diff
changeset
|
1278 |
6555 | 1279 @defun yes-or-no-p prompt |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1280 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
|
1281 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
|
1282 @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
|
1283 finalize the response. Upper and lower case are equivalent. |
6555 | 1284 |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1285 @code{yes-or-no-p} starts by displaying @var{prompt} in the echo area, |
6555 | 1286 followed by @w{@samp{(yes or no) }}. The user must type one of the |
1287 expected responses; otherwise, the function responds @samp{Please answer | |
1288 yes or no.}, waits about two seconds and repeats the request. | |
1289 | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1290 @code{yes-or-no-p} requires more work from the user than |
6555 | 1291 @code{y-or-n-p} and is appropriate for more crucial decisions. |
1292 | |
1293 Here is an example: | |
1294 | |
1295 @smallexample | |
1296 @group | |
1297 (yes-or-no-p "Do you really want to remove everything? ") | |
1298 | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1299 ;; @r{After evaluation of the preceding expression,} |
6555 | 1300 ;; @r{the following prompt appears,} |
1301 ;; @r{with an empty minibuffer:} | |
1302 @end group | |
1303 | |
1304 @group | |
1305 ---------- Buffer: minibuffer ---------- | |
1306 Do you really want to remove everything? (yes or no) | |
1307 ---------- Buffer: minibuffer ---------- | |
1308 @end group | |
1309 @end smallexample | |
1310 | |
1311 @noindent | |
1312 If the user first types @kbd{y @key{RET}}, which is invalid because this | |
1313 function demands the entire word @samp{yes}, it responds by displaying | |
1314 these prompts, with a brief pause between them: | |
1315 | |
1316 @smallexample | |
1317 @group | |
1318 ---------- Buffer: minibuffer ---------- | |
1319 Please answer yes or no. | |
1320 Do you really want to remove everything? (yes or no) | |
1321 ---------- Buffer: minibuffer ---------- | |
1322 @end group | |
1323 @end smallexample | |
1324 @end defun | |
1325 | |
1326 @node Multiple Queries | |
1327 @section Asking Multiple Y-or-N Questions | |
1328 | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1329 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
|
1330 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
|
1331 @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
|
1332 asking each question individually. This gives the user certain |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1333 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
|
1334 once. |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1335 |
6555 | 1336 @defun map-y-or-n-p prompter actor list &optional help action-alist |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
1337 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
|
1338 single-character answer in the echo area for each one. |
6555 | 1339 |
1340 The value of @var{list} specifies the objects to ask questions about. | |
1341 It should be either a list of objects or a generator function. If it is | |
1342 a function, it should expect no arguments, and should return either the | |
1343 next object to ask about, or @code{nil} meaning stop asking questions. | |
1344 | |
1345 The argument @var{prompter} specifies how to ask each question. If | |
1346 @var{prompter} is a string, the question text is computed like this: | |
1347 | |
1348 @example | |
1349 (format @var{prompter} @var{object}) | |
1350 @end example | |
1351 | |
1352 @noindent | |
1353 where @var{object} is the next object to ask about (as obtained from | |
1354 @var{list}). | |
1355 | |
1356 If not a string, @var{prompter} should be a function of one argument | |
12226 | 1357 (the next object to ask about) and should return the question text. If |
1358 the value is a string, that is the question to ask the user. The | |
1359 function can also return @code{t} meaning do act on this object (and | |
1360 don't ask the user), or @code{nil} meaning ignore this object (and don't | |
1361 ask the user). | |
6555 | 1362 |
1363 The argument @var{actor} says how to act on the answers that the user | |
1364 gives. It should be a function of one argument, and it is called with | |
1365 each object that the user says yes for. Its argument is always an | |
1366 object obtained from @var{list}. | |
1367 | |
1368 If the argument @var{help} is given, it should be a list of this form: | |
1369 | |
1370 @example | |
1371 (@var{singular} @var{plural} @var{action}) | |
1372 @end example | |
1373 | |
1374 @noindent | |
1375 where @var{singular} is a string containing a singular noun that | |
1376 describes the objects conceptually being acted on, @var{plural} is the | |
1377 corresponding plural noun, and @var{action} is a transitive verb | |
1378 describing what @var{actor} does. | |
1379 | |
1380 If you don't specify @var{help}, the default is @code{("object" | |
1381 "objects" "act on")}. | |
1382 | |
1383 Each time a question is asked, the user may enter @kbd{y}, @kbd{Y}, or | |
1384 @key{SPC} to act on that object; @kbd{n}, @kbd{N}, or @key{DEL} to skip | |
1385 that object; @kbd{!} to act on all following objects; @key{ESC} or | |
1386 @kbd{q} to exit (skip all following objects); @kbd{.} (period) to act on | |
1387 the current object and then exit; or @kbd{C-h} to get help. These are | |
1388 the same answers that @code{query-replace} accepts. The keymap | |
1389 @code{query-replace-map} defines their meaning for @code{map-y-or-n-p} | |
1390 as well as for @code{query-replace}; see @ref{Search and Replace}. | |
1391 | |
1392 You can use @var{action-alist} to specify additional possible answers | |
1393 and what they mean. It is an alist of elements of the form | |
1394 @code{(@var{char} @var{function} @var{help})}, each of which defines one | |
1395 additional answer. In this element, @var{char} is a character (the | |
1396 answer); @var{function} is a function of one argument (an object from | |
1397 @var{list}); @var{help} is a string. | |
1398 | |
1399 When the user responds with @var{char}, @code{map-y-or-n-p} calls | |
1400 @var{function}. If it returns non-@code{nil}, the object is considered | |
1401 ``acted upon'', and @code{map-y-or-n-p} advances to the next object in | |
1402 @var{list}. If it returns @code{nil}, the prompt is repeated for the | |
1403 same object. | |
1404 | |
7337
cd57cd335fff
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7221
diff
changeset
|
1405 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
|
1406 mouse---more precisely, if @code{last-nonmenu-event} (@pxref{Command |
cd57cd335fff
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7221
diff
changeset
|
1407 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
|
1408 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
|
1409 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
|
1410 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
|
1411 value around the call. |
cd57cd335fff
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7221
diff
changeset
|
1412 |
6555 | 1413 The return value of @code{map-y-or-n-p} is the number of objects acted on. |
1414 @end defun | |
1415 | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
1416 @node Reading a Password |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
1417 @section Reading a Password |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
1418 |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
1419 This function is useful for reading passwords. |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
1420 |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1421 @defun read-password prompt default |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
1422 @tindex read-password |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
1423 This function reads a password, echoing @samp{.} in the echo area |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
1424 for each character entered, and returns it as a string. It prompts |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
1425 with @var{prompt}, and returns @var{default} if the user enters the |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
1426 null string. |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
1427 @end defun |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
1428 |
6555 | 1429 @node Minibuffer Misc |
1430 @section Minibuffer Miscellany | |
1431 | |
1432 This section describes some basic functions and variables related to | |
1433 minibuffers. | |
1434 | |
1435 @deffn Command exit-minibuffer | |
1436 This command exits the active minibuffer. It is normally bound to | |
1437 keys in minibuffer local keymaps. | |
1438 @end deffn | |
1439 | |
1440 @deffn Command self-insert-and-exit | |
1441 This command exits the active minibuffer after inserting the last | |
1442 character typed on the keyboard (found in @code{last-command-char}; | |
1443 @pxref{Command Loop Info}). | |
1444 @end deffn | |
1445 | |
1446 @deffn Command previous-history-element n | |
1447 This command replaces the minibuffer contents with the value of the | |
1448 @var{n}th previous (older) history element. | |
1449 @end deffn | |
1450 | |
1451 @deffn Command next-history-element n | |
1452 This command replaces the minibuffer contents with the value of the | |
1453 @var{n}th more recent history element. | |
1454 @end deffn | |
1455 | |
1456 @deffn Command previous-matching-history-element pattern | |
1457 This command replaces the minibuffer contents with the value of the | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1458 previous (older) history element that matches @var{pattern} (a regular |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1459 expression). |
6555 | 1460 @end deffn |
1461 | |
1462 @deffn Command next-matching-history-element pattern | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1463 This command replaces the minibuffer contents with the value of the next |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1464 (newer) history element that matches @var{pattern} (a regular |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1465 expression). |
6555 | 1466 @end deffn |
1467 | |
12098 | 1468 @defun minibuffer-prompt |
1469 This function returns the prompt string of the currently active | |
1470 minibuffer. If no minibuffer is active, it returns @code{nil}. | |
1471 @end defun | |
1472 | |
1473 @defun minibuffer-prompt-width | |
1474 This function returns the display width of the prompt string of the | |
1475 currently active minibuffer. If no minibuffer is active, it returns 0. | |
1476 @end defun | |
1477 | |
6555 | 1478 @defvar minibuffer-setup-hook |
1479 This is a normal hook that is run whenever the minibuffer is entered. | |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1480 @xref{Hooks}. |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1481 @end defvar |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1482 |
8529
464f7abd0b26
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7337
diff
changeset
|
1483 @defvar minibuffer-exit-hook |
7221
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1484 This is a normal hook that is run whenever the minibuffer is exited. |
a2c7acc3be9c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6555
diff
changeset
|
1485 @xref{Hooks}. |
6555 | 1486 @end defvar |
1487 | |
1488 @defvar minibuffer-help-form | |
1489 The current value of this variable is used to rebind @code{help-form} | |
1490 locally inside the minibuffer (@pxref{Help Functions}). | |
1491 @end defvar | |
1492 | |
12067 | 1493 @defun active-minibuffer-window |
1494 This function returns the currently active minibuffer window, or | |
1495 @code{nil} if none is currently active. | |
1496 @end defun | |
1497 | |
6555 | 1498 @defun minibuffer-window &optional frame |
12067 | 1499 This function returns the minibuffer window used for frame @var{frame}. |
1500 If @var{frame} is @code{nil}, that stands for the current frame. Note | |
1501 that the minibuffer window used by a frame need not be part of that | |
1502 frame---a frame that has no minibuffer of its own necessarily uses some | |
1503 other frame's minibuffer window. | |
6555 | 1504 @end defun |
1505 | |
1506 @c Emacs 19 feature | |
1507 @defun window-minibuffer-p window | |
1508 This function returns non-@code{nil} if @var{window} is a minibuffer window. | |
1509 @end defun | |
1510 | |
1511 It is not correct to determine whether a given window is a minibuffer by | |
1512 comparing it with the result of @code{(minibuffer-window)}, because | |
1513 there can be more than one minibuffer window if there is more than one | |
1514 frame. | |
1515 | |
1516 @defun minibuffer-window-active-p window | |
1517 This function returns non-@code{nil} if @var{window}, assumed to be | |
1518 a minibuffer window, is currently active. | |
1519 @end defun | |
1520 | |
1521 @defvar minibuffer-scroll-window | |
1522 If the value of this variable is non-@code{nil}, it should be a window | |
1523 object. When the function @code{scroll-other-window} is called in the | |
1524 minibuffer, it scrolls this window. | |
1525 @end defvar | |
1526 | |
1527 Finally, some functions and variables deal with recursive minibuffers | |
1528 (@pxref{Recursive Editing}): | |
1529 | |
1530 @defun minibuffer-depth | |
1531 This function returns the current depth of activations of the | |
1532 minibuffer, a nonnegative integer. If no minibuffers are active, it | |
1533 returns zero. | |
1534 @end defun | |
1535 | |
1536 @defopt enable-recursive-minibuffers | |
1537 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
|
1538 @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
|
1539 is active. Such invocation produces a recursive editing level for a new |
6555 | 1540 minibuffer. The outer-level minibuffer is invisible while you are |
1541 editing the inner one. | |
1542 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
1543 If this variable is @code{nil}, you cannot invoke minibuffer |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
1544 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
|
1545 another window to do it. |
6555 | 1546 @end defopt |
1547 | |
1548 @c Emacs 19 feature | |
1549 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
|
1550 that is non-@code{nil}, then the command can use the minibuffer to read |
6555 | 1551 arguments even if it is invoked from the minibuffer. The minibuffer |
12098 | 1552 command @code{next-matching-history-element} (normally @kbd{M-s} in the |
1553 minibuffer) uses this feature. |