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