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