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