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