Minibuffers
A minibuffer is a special buffer that Emacs commands use to read arguments more complicated than the single numeric prefix argument. These arguments include file names, buffer names, and command names (as in M-x). The minibuffer is displayed on the bottom line of the frame, in the same place as the echo area (The Echo Area), but only while it is in use for reading an argument.
Introduction to Minibuffers
In most ways, a minibuffer is a normal Emacs buffer. Most operations within a buffer, such as editing commands, work normally in a minibuffer. However, many operations for managing buffers do not apply to minibuffers. The name of a minibuffer always has the form *Minibuf-NUMBER*, and it cannot be changed. Minibuffers are displayed only in special windows used only for minibuffers; these windows always appear at the bottom of a frame. (Sometimes frames have no minibuffer window, and sometimes a special kind of frame contains nothing but a minibuffer window; see Minibuffers and Frames.) The text in the minibuffer always starts with the prompt string, the text that was specified by the program that is using the minibuffer to tell the user what sort of input to type. This text is marked read-only so you won't accidentally delete or change it. It is also marked as a field (Fields), so that certain motion functions, including beginning-of-line, forward-word, forward-sentence, and forward-paragraph, stop at the boundary between the prompt and the actual text. The minibuffer's window is normally a single line; it grows automatically if the contents require more space. Whilst the minibuffer is active, you can explicitly resize its window temporarily with the window sizing commands; the window reverts to its normal size when the minibuffer is exited. When the minibuffer is not active, you can resize its window permanently by using the window sizing commands in the frame's other window, or dragging the mode line with the mouse. (Due to details of the current implementation, for this to work resize-mini-windows must be nil.) If the frame contains just a minibuffer window, you can change its size by changing the frame's size. Use of the minibuffer reads input events, and that alters the values of variables such as this-command and last-command (Command Loop Info). Your program should bind them around the code that uses the minibuffer, if you do not want that to change them. Under some circumstances, a command can use a minibuffer even if there is an active minibuffer; such a minibuffer is called a recursive minibuffer. The first minibuffer is named *Minibuf-1*. Recursive minibuffers are named by incrementing the number at the end of the name. (The names begin with a space so that they won't show up in normal buffer lists.) Of several recursive minibuffers, the innermost (or most recently entered) is the active minibuffer–it is the one you can terminate by typing RET (exit-minibuffer) in. We usually call this the minibuffer. You can permit or forbid recursive minibuffers by setting the variable enable-recursive-minibuffers, or by putting properties of that name on command symbols (Recursive Mini.) Like other buffers, a minibuffer uses a local keymap (Keymaps) to specify special key bindings. The function that invokes the minibuffer also sets up its local map according to the job to be done. Text from Minibuffer, for the non-completion minibuffer local maps. Completion Commands, for the minibuffer local maps for completion. An active minibuffer usually has major mode minibuffer-mode. This is an Emacs internal mode without any special features. To customize the setup of minibuffers, we suggest you use minibuffer-setup-hook (Minibuffer Misc) rather than minibuffer-mode-hook, since the former is run later, after the minibuffer has been fully initialized. When a minibuffer is inactive, its major mode is minibuffer-inactive-mode, with keymap minibuffer-inactive-mode-map. This is only really useful if the minibuffer is in a separate frame. Minibuffers and Frames. When Emacs is running in batch mode, any request to read from the minibuffer actually reads a line from the standard input descriptor that was supplied when Emacs was started. This supports only basic input: none of the special minibuffer features (history, completion, etc.) are available in batch mode.
Reading Text Strings with the Minibuffer
The most basic primitive for minibuffer input is read-from-minibuffer, which can be used to read either a string or a Lisp object in textual form. The function read-regexp is used for reading regular expressions (Regular Expressions), which are a special kind of string. There are also specialized functions for reading commands, variables, file names, etc. (Completion). In most cases, you should not call minibuffer input functions in the middle of a Lisp function. Instead, do all minibuffer input as part of reading the arguments for a command, in the interactive specification. Defining Commands.
-
read-from-minibuffer - This function is the most general way to get input from the minibuffer. By default, it accepts arbitrary text and returns it as a string; however, if read is non-
nil, then it usesreadto convert the text into a Lisp object (Input Functions). The first thing this function does is to activate a minibuffer and display it with prompt (which must be a string) as the prompt. Then the user can edit text in the minibuffer. When the user types a command to exit the minibuffer,read-from-minibufferconstructs the return value from the text in the minibuffer. Normally it returns a string containing that text. However, if read is non-nil,read-from-minibufferreads the text and returns the resulting Lisp object, unevaluated. (Input Functions, for information about reading.) The argument default specifies default values to make available through the history commands. It should be a string, a list of strings, ornil. The string or strings become the minibuffer's "future history", available to the user withM-n. In addition, if the call provides completion (e.g., via the keymap argument), the completion candidates are added to the "future history" when the values in default are exhausted byM-n; see minibuffer-default-add-function. If read is non-nil, then default is also used as the input toread, if the user enters empty input. If default is a list of strings, the first string is used as the input. If default isnil, empty input results in anend-of-fileerror. However, in the usual case (where read isnil),read-from-minibufferignores default when the user enters empty input and returns an empty string,"". In this respect, it differs from all the other minibuffer input functions in this chapter. If keymap is non-nil, that keymap is the local keymap to use in the minibuffer. If keymap is omitted ornil, the value ofminibuffer-local-mapis used as the keymap. Specifying a keymap is the most important way to customize the minibuffer for various applications such as completion. The argument history specifies a history list variable to use for saving the input and for history commands used in the minibuffer. It defaults tominibuffer-history. If history is the symbolt, history is not recorded. You can optionally specify a starting position in the history list as well. Minibuffer History. If the variableminibuffer-allow-text-propertiesis non-nil, then the string that is returned includes whatever text properties were present in the minibuffer. Otherwise all the text properties are stripped when the value is returned. (By default this variable isnil.) The text properties inminibuffer-prompt-propertiesare applied to the prompt. By default, this property list defines a face to use for the prompt. This face, if present, is applied to the end of the face list and merged before display. If the user wants to completely control the look of the prompt, the most convenient way to do that is to specify thedefaultface at the end of all face lists. For instance:
(read-from-minibuffer
(concat
(propertize "Bold" 'face '(bold default))
(propertize " and normal: " 'face '(default))))
If the argument inherit-input-method is non-nil, then the minibuffer inherits the current input method (Input Methods) and the setting of enable-multibyte-characters (Text Representations) from whichever buffer was current before entering the minibuffer. Use of initial is mostly deprecated; we recommend using a non-nil value only in conjunction with specifying a cons cell for history. Initial Input.
-
read-string - This function reads a string from the minibuffer and returns it. The arguments prompt, initial, history and inherit-input-method are used as in
read-from-minibuffer. The keymap used isminibuffer-local-map. The optional argument default is used as inread-from-minibuffer, except that, if non-nil, it also specifies a default value to return if the user enters null input. As inread-from-minibufferit should be a string, a list of strings, ornil, which is equivalent to an empty string. When default is a string, that string is the default value. When it is a list of strings, the first string is the default value. (All these strings are available to the user in the "future minibuffer history".) This function works by calling theread-from-minibufferfunction:
(read-string PROMPT INITIAL HISTORY DEFAULT INHERIT)
≡
(let ((value
(read-from-minibuffer PROMPT INITIAL nil nil
HISTORY DEFAULT INHERIT)))
(if (and (equal value "") DEFAULT)
(if (consp DEFAULT) (car DEFAULT) DEFAULT)
value))
If you have a long string (for instance, one that is several lines long) that you wish to edit, using read-string may not be ideal. In that case, popping to a new, normal buffer where the user can edit the string may be more convenient, and you can use the read-string-from-buffer function to do that.
-
read-regexp - This function reads a regular expression as a string from the minibuffer and returns it. If the minibuffer prompt string prompt does not end in
:(followed by optional whitespace), the function adds:to the end, preceded by the default return value (see below), if that is non-empty. The optional argument defaults controls the default value to return if the user enters null input, and should be one of: a string;nil, which is equivalent to an empty string; a list of strings; or a symbol. If defaults is a symbol,read-regexpconsults the value of the variableread-regexp-defaults-function(see below), and if that is non-niluses it in preference to defaults. The value in this case should be either: - ?
regexp-history-last, which means to use the first element of the appropriate minibuffer history list (see below).- ?
- A function of no arguments, whose return value (which should be
nil, a string, or a list of strings) becomes the value of defaults.
read-regexp now ensures that the result of processing defaults is a list (i.e., if the value is nil or a string, it converts it to a list of one element). To this list, read-regexp then appends a few potentially useful candidates for input. These are:
- The word or symbol at point.
- The last regexp used in an incremental search.
- The last string used in an incremental search.
- The last string or pattern used in query-replace commands.
The function now has a list of regular expressions that it passes to read-from-minibuffer to obtain the user's input. The first element of the list is the default result in case of empty input. All elements of the list are available to the user as the "future minibuffer history" list (future list). The optional argument history, if non-nil, is a symbol specifying a minibuffer history list to use (Minibuffer History). If it is omitted or nil, the history list defaults to regexp-history. The user can use the M-s c command to indicate whether case folding should be on or off. If the user has used this command, the returned string will have the text property case-fold set to either fold or inhibit-fold. It is up to the caller of read-regexp to actually use this value, and the convenience function read-regexp-case-fold-search is provided for that. A typical usage pattern here might look like:
(let* ((regexp (read-regexp "Search for: "))
(case-fold-search (read-regexp-case-fold-search regexp)))
(re-search-forward regexp))-
read-regexp-defaults-function - The function
read-regexpmay use the value of this variable to determine its list of default regular expressions. If non-nil, the value of this variable should be either: - ?
- The symbol
regexp-history-last. - ?
- A function of no arguments that returns either
nil, a string, or a list of strings.
See read-regexp above for details of how these values are used.
-
minibuffer-allow-text-properties - If this variable is
nil, the default, thenread-from-minibufferandread-stringstrip all text properties from the minibuffer input before returning it. However,read-no-blanks-input(see below), as well asread-minibufferand related functions (Reading Lisp Objects With the Minibuffer), and all functions that do minibuffer input with completion, remove thefaceproperty unconditionally, regardless of the value of this variable. If this variable is non-nil, most text properties on strings from the completion table are preserved—but only on the part of the strings that were completed.
(let ((minibuffer-allow-text-properties t))
(completing-read "String: " (list (propertize "foobar" 'data 'zot))))
=> #("foobar" 3 6 (data zot))
In this example, the user typed foo and then hit the TAB key, so the text properties are only preserved on the last three characters.
-
minibuffer-local-map - This is the default local keymap for reading from the minibuffer. By default, it makes the following bindings:
-
C-j exit-minibuffer-
RET exit-minibuffer-
M-< minibuffer-beginning-of-buffer-
C-g abort-recursive-edit-
M-n,DOWN next-history-element-
M-p,UP previous-history-element-
M-s next-matching-history-element-
M-r previous-matching-history-element
The variable minibuffer-mode-map is an alias for this variable.
-
read-no-blanks-input - This function reads a string from the minibuffer, but does not allow whitespace characters as part of the input: instead, those characters terminate the input. The arguments prompt, initial, and inherit-input-method are used as in
read-from-minibuffer. This is a simplified interface to theread-from-minibufferfunction, and passes the value of theminibuffer-local-ns-mapkeymap as the keymap argument for that function. Since the keymapminibuffer-local-ns-mapdoes not rebindC-q, it is possible to put a space into the string, by quoting it. This function discards text properties, regardless of the value ofminibuffer-allow-text-properties.
(read-no-blanks-input PROMPT INITIAL) ≡ (let (minibuffer-allow-text-properties) (read-from-minibuffer PROMPT INITIAL minibuffer-local-ns-map))
-
minibuffer-local-ns-map - This built-in variable is the keymap used as the minibuffer local keymap in the function
read-no-blanks-input. By default, it makes the following bindings, in addition to those ofminibuffer-local-map: -
SPC exit-minibuffer-
TAB exit-minibuffer-
? self-insert-and-exit-
format-prompt - Format prompt with default value default according to the
minibuffer-default-prompt-formatvariable.minibuffer-default-prompt-formatis a format string (defaulting to" (default %s)"that says how the "default" bit in prompts like"Local filename (default somefile): "are to be formatted. To allow the users to customize how this is displayed, code that prompts the user for a value (and has a default) should look something along the lines of this code snippet:
(read-file-name
(format-prompt "Local filename" file)
nil file)
If format-args is nil, prompt is used as a literal string. If format-args is non-nil, prompt is used as a format control string, and prompt and format-args are passed to format (Formatting Strings). minibuffer-default-prompt-format can be "", in which case no default values are displayed. If default is nil, there is no default value, and therefore no "default value" string is included in the result value. If default is a non-nil list, the first element of the list is used in the prompt. Both prompt and minibuffer-default-prompt-format are run through substitute-command-keys (Keys in Documentation).
-
read-minibuffer-restore-windows - If this option is non-
nil(the default), getting input from the minibuffer will restore, on exit, the window configurations of the frame where the minibuffer was entered from and, if it is different, the frame that owns the minibuffer window. This means that if, for example, a user splits a window while getting input from the minibuffer on the same frame, that split will be undone when exiting the minibuffer. If this option isnil, no such restorations are done. Hence, the window split mentioned above will persist after exiting the minibuffer.
Reading Lisp Objects with the Minibuffer
This section describes functions for reading Lisp objects with the minibuffer.
-
read-minibuffer - This function reads a Lisp object using the minibuffer, and returns it without evaluating it. The arguments prompt and initial are used as in
read-from-minibuffer. This is a simplified interface to theread-from-minibufferfunction:
(read-minibuffer PROMPT INITIAL) ≡ (let (minibuffer-allow-text-properties) (read-from-minibuffer PROMPT INITIAL nil t))
Here is an example in which we supply the string "(testing)" as initial input:
(read-minibuffer "Enter an expression: " (format "%s" '(testing))) ;; Here is how the minibuffer is displayed: ---------- Buffer: Minibuffer ---------- Enter an expression: (testing)⋆ ---------- Buffer: Minibuffer ----------
The user can type RET immediately to use the initial input as a default, or can edit the input.
-
eval-minibuffer - This function reads a Lisp expression using the minibuffer, evaluates it, then returns the result. The arguments prompt and initial are used as in
read-from-minibuffer. This function simply evaluates the result of a call toread-minibuffer:
(eval-minibuffer PROMPT INITIAL) ≡ (eval (read-minibuffer PROMPT INITIAL))
-
edit-and-eval-command - This function reads a Lisp expression in the minibuffer, evaluates it, then returns the result. The difference between this command and
eval-minibufferis that here the initial form is not optional and it is treated as a Lisp object to be converted to printed representation rather than as a string of text. It is printed withprin1, so if it is a string, double-quote characters (") appear in the initial text. Output Functions. In the following example, we offer the user an expression with initial text that is already a valid form:
(edit-and-eval-command "Please edit: " '(forward-word 1)) ;; After evaluation of the preceding expression ;; the following appears in the minibuffer: ---------- Buffer: Minibuffer ---------- Please edit: (forward-word 1)⋆ ---------- Buffer: Minibuffer ----------
Typing RET right away would exit the minibuffer and evaluate the expression, thus moving point forward one word.
Minibuffer History
A minibuffer history list records previous minibuffer inputs so the user can reuse them conveniently. It is a variable whose value is a list of strings (previous inputs), most recent first. There are many separate minibuffer history lists, used for different kinds of inputs. It's the Lisp programmer's job to specify the right history list for each use of the minibuffer. You specify a minibuffer history list with the optional history argument to read-from-minibuffer or completing-read. Here are the possible values for it:
- variable
- Use variable (a symbol) as the history list.
- (variable . startpos)
- Use variable (a symbol) as the history list, and assume that the initial history position is startpos (a nonnegative integer). Specifying 0 for startpos is equivalent to just specifying the symbol variable.
previous-history-elementwill display the most recent element of the history list in the minibuffer. If you specify a positive startpos, the minibuffer history functions behave as if(elt VARIABLE (1- STARTPOS))were the history element currently shown in the minibuffer. For consistency, you should also specify that element of the history as the initial minibuffer contents, using the initial argument to the minibuffer input function (Initial Input).
If you don't specify history, then the default history list minibuffer-history is used. For other standard history lists, see below. You can also create your own history list variable; just initialize it to nil before the first use. If the variable is buffer local, then each buffer will have its own input history list. Both read-from-minibuffer and completing-read add new elements to the history list automatically, and provide commands to allow the user to reuse items on the list (Minibuffer Commands). The only thing your program needs to do to use a history list is to initialize it and to pass its name to the input functions when you wish. But it is safe to modify the list by hand when the minibuffer input functions are not using it. By default, when M-n (next-history-element, next-history-element) reaches the end of the list of default values provided by the command which initiated reading input from the minibuffer, M-n adds all of the completion candidates, as specified by minibuffer-completion-table (Completion Commands), to the list of defaults, so that all those candidates are available as "future history". Your program can control that via the variable minibuffer-default-add-function: if its value is not a function, this automatic addition is disabled, and you can also set this variable to your own function which adds only some candidates, or some other values, to the "future history". Emacs functions that add a new element to a history list can also delete old elements if the list gets too long. The variable history-length specifies the maximum length for most history lists. To specify a different maximum length for a particular history list, put the length in the history-length property of the history list symbol. The variable history-delete-duplicates specifies whether to delete duplicates in history.
-
add-to-history - This function adds a new element newelt, if it isn't the empty string, to the history list stored in the variable history-var, and returns the updated history list. It limits the list length to the value of maxelt (if non-
nil) orhistory-length(described below). The possible values of maxelt have the same meaning as the values ofhistory-length. history-var cannot refer to a lexical variable. Normally,add-to-historyremoves duplicate members from the history list ifhistory-delete-duplicatesis non-nil. However, if keep-all is non-nil, that says not to remove duplicates, and to add newelt to the list even if it is empty. -
history-add-new-input - If the value of this variable is
nil, standard functions that read from the minibuffer don't add new elements to the history list. This lets Lisp programs explicitly manage input history by usingadd-to-history. The default value ist. -
history-length - The value of this variable specifies the maximum length for all history lists that don't specify their own maximum lengths. If the value is
t, that means there is no maximum (don't delete old elements). If a history list variable's symbol has a non-nilhistory-lengthproperty, it overrides this variable for that particular history list. -
history-delete-duplicates - If the value of this variable is
t, that means when adding a new history element, all previous identical elements are deleted.
Here are some of the standard minibuffer history list variables:
-
minibuffer-history - The default history list for minibuffer history input.
-
query-replace-history - A history list for arguments to
query-replace(and similar arguments to other commands). -
file-name-history - A history list for file-name arguments.
-
buffer-name-history - A history list for buffer-name arguments.
-
regexp-history - A history list for regular expression arguments.
-
extended-command-history - A history list for arguments that are names of extended commands.
-
shell-command-history - A history list for arguments that are shell commands.
-
read-expression-history - A history list for arguments that are Lisp expressions to evaluate.
-
face-name-history - A history list for arguments that are faces.
-
custom-variable-history - A history list for variable-name arguments read by
read-variable. -
read-number-history - A history list for numbers read by
read-number. -
goto-line-history - A history list for arguments to
goto-line. This variable can be made local in every buffer by customizing the user optiongoto-line-history-local.
Initial Input
Several of the functions for minibuffer input have an argument called initial. This is a mostly-deprecated feature for specifying that the minibuffer should start out with certain text, instead of empty as usual. If initial is a string, the minibuffer starts out containing the text of the string, with point at the end, when the user starts to edit the text. If the user simply types RET to exit the minibuffer, it will use the initial input string to determine the value to return. We discourage use of a non-nil value for initial, because initial input is an intrusive interface. History lists and default values provide a much more convenient method to offer useful default inputs to the user. There is just one situation where you should specify a string for an initial argument. This is when you specify a cons cell for the history argument. Minibuffer History. initial can also be a cons cell of the form (STRING . POSITION). This means to insert string in the minibuffer but put point at position within the string's text. As a historical accident, position was implemented inconsistently in different functions. In completing-read, position's value is interpreted as origin-zero; that is, a value of 0 means the beginning of the string, 1 means after the first character, etc. In read-minibuffer, and the other non-completion minibuffer input functions that support this argument, 1 means the beginning of the string, 2 means after the first character, etc. Use of a cons cell as the value for initial arguments is deprecated.
Completion
Completion is a feature that fills in the rest of a name starting from an abbreviation for it. Completion works by comparing the user's input against a list of valid names and determining how much of the name is determined uniquely by what the user has typed. For example, when you type C-x b (switch-to-buffer) and then type the first few letters of the name of the buffer to which you wish to switch, and then type TAB (minibuffer-complete), Emacs extends the name as far as it can. Standard Emacs commands offer completion for names of symbols, files, buffers, and processes; with the functions in this section, you can implement completion for other kinds of names. The try-completion function is the basic primitive for completion: it returns the longest determined completion of a given initial string, with a given set of strings to match against. The function completing-read provides a higher-level interface for completion. A call to completing-read specifies how to determine the list of valid names. The function then activates the minibuffer with a local keymap that binds a few keys to commands useful for completion. Other functions provide convenient simple interfaces for reading certain kinds of names with completion.
Basic Completion Functions
The following completion functions have nothing in themselves to do with minibuffers. We describe them here to keep them near the higher-level completion features that do use the minibuffer.
-
try-completion - This function returns the longest common substring of all possible completions of string in collection. collection is called the completion table. Its value must be a list of strings or cons cells, an obarray, a hash table, or a completion function.
try-completioncompares string against each of the permissible completions specified by the completion table. If no permissible completions match, it returnsnil. If there is just one matching completion, and the match is exact, it returnst. Otherwise, it returns the longest initial sequence common to all possible matching completions. If collection is a list, the permissible completions are specified by the elements of the list, each of which should be either a string, or a cons cell whose CAR is either a string or a symbol (a symbol is converted to a string usingsymbol-name). If the list contains elements of any other type, those are ignored. If collection is an obarray (Creating Symbols), the names of all symbols in the obarray form the set of permissible completions. If collection is a hash table, then the keys that are strings or symbols are the possible completions. Other keys are ignored. You can also use a function as collection. Then the function is solely responsible for performing completion;try-completionreturns whatever this function returns. The function is called with three arguments: string, predicate andnil(the third argument is so that the same function can be used inall-completionsand do the appropriate thing in either case). Programmed Completion. If the argument predicate is non-nil, then it must be a function of one argument, unless collection is a hash table, in which case it should be a function of two arguments. It is used to test each possible match, and the match is accepted only if predicate returns non-nil. The argument given to predicate is either a string or a cons cell (the CAR of which is a string) from the alist, or a symbol (not a symbol name) from the obarray. If collection is a hash table, predicate is called with two arguments, the string key and the associated value. In addition, to be acceptable, a completion must also match all the regular expressions incompletion-regexp-list. (Unless collection is a function, in which case that function has to handlecompletion-regexp-listitself.) In the first of the following examples, the stringfoois matched by three of the alist CARs. All of the matches begin with the charactersfooba, so that is the result. In the second example, there is only one possible match, and it is exact, so the return value ist.
(try-completion
"foo"
'(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4)))
=> "fooba"
(try-completion "foo" '(("barfoo" 2) ("foo" 3)))
=> t
In the following example, numerous symbols begin with the characters forw, and all of them begin with the word forward. In most of the symbols, this is followed with a -, but not in all, so no more than forward can be completed.
(try-completion "forw" obarray)
=> "forward"
Finally, in the following example, only two of the three possible matches pass the predicate test (the string foobaz is too short). Both of those begin with the string foobar.
(defun test (s)
(> (length (car s)) 6))
=> test
(try-completion
"foo"
'(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
'test)
=> "foobar"
-
all-completions - This function returns a list of all possible completions of string. The arguments to this function are the same as those of
try-completion, and it usescompletion-regexp-listin the same way thattry-completiondoes. If collection is a function, it is called with three arguments: string, predicate andt; thenall-completionsreturns whatever the function returns. Programmed Completion. Here is an example, using the functiontestshown in the example fortry-completion:
(defun test (s)
(> (length (car s)) 6))
=> test
(all-completions
"foo"
'(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
'test)
=> ("foobar1" "foobar2")
-
test-completion - This function returns non-
nilif string is a valid completion alternative specified by collection and predicate. The arguments are the same as intry-completion. For instance, if collection is a list of strings, this is true if string appears in the list and predicate is satisfied. This function usescompletion-regexp-listin the same way thattry-completiondoes. If predicate is non-niland if collection contains several strings that are equal to each other, as determined bycompare-stringsaccording tocompletion-ignore-case, then predicate should accept either all or none of them. Otherwise, the return value oftest-completionis essentially unpredictable. If collection is a function, it is called with three arguments, the values string, predicate andlambda; whatever it returns,test-completionreturns in turn. -
completion-boundaries - This function returns the boundaries of the field on which collection will operate, assuming that string holds the text before point and suffix holds the text after point. Normally completion operates on the whole string, so for all normal collections, this will always return
(0 . (length SUFFIX)). But more complex completion, such as completion on files, is done one field at a time. For example, completion of"/usr/sh"will include"/usr/share/"but not"/usr/share/doc"even if"/usr/share/doc"exists. Alsoall-completionson"/usr/sh"will not include"/usr/share/"but only"share/". So if string is"/usr/sh"and suffix is"e/doc",completion-boundarieswill return(5 . 1)which tells us that the collection will only return completion information that pertains to the area after"/usr/"and before"/doc".try-completionis not affected by nontrivial boundaries; e.g.,try-completionon"/usr/sh"might still return"/usr/share/", not"share/".
If you store a completion alist in a variable, you should mark the variable as risky by giving it a non-nil risky-local-variable property. File Local Variables.
-
completion-ignore-case - If the value of this variable is non-
nil, case is not considered significant in completion. Withinread-file-name, this variable is overridden byread-file-name-completion-ignore-case(Reading File Names); withinread-buffer, it is overridden byread-buffer-completion-ignore-case(High-Level Completion). -
completion-regexp-list - This is a list of regular expressions. The completion functions only consider a completion acceptable if it matches all regular expressions in this list, with
case-fold-search(Searching and Case) bound to the value ofcompletion-ignore-case. Do not set this variable to a non-nilvalue globally, as that is not safe and will probably cause errors in completion commands. This variable should be only let-bound to non-nilvalues around calls to basic completion functions:try-completion,test-completion, andall-completions. -
lazy-completion-table - This macro provides a way to initialize the variable var as a collection for completion in a lazy way, not computing its actual contents until they are first needed. You use this macro to produce a value that you store in var. The actual computation of the proper value is done the first time you do completion using var. It is done by calling fun with no arguments. The value fun returns becomes the permanent value of var. Here is an example:
(defvar foo (lazy-completion-table foo make-my-alist))
There are several functions that take an existing completion table and return a modified version. completion-table-case-fold returns a case-insensitive table. completion-table-in-turn and completion-table-merge combine multiple input tables in different ways. completion-table-subvert alters a table to use a different initial prefix. completion-table-with-quoting returns a table suitable for operating on quoted text. completion-table-with-predicate filters a table with a predicate function. completion-table-with-terminator adds a terminating string.
Completion and the Minibuffer
This section describes the basic interface for reading from the minibuffer with completion.
-
completing-read - This function reads a string in the minibuffer, assisting the user by providing completion. It activates the minibuffer with prompt prompt, which must be a string. The actual completion is done by passing the completion table collection and the completion predicate predicate to the function
try-completion(Basic Completion). This happens in certain commands bound in the local keymaps used for completion. Some of these commands also calltest-completion. Thus, if predicate is non-nil, it should be compatible with collection andcompletion-ignore-case. Definition of test-completion. Programmed Completion, for detailed requirements when collection is a function. The value of the optional argument require-match determines how the user may exit the minibuffer: - ?
- If
nil, the usual minibuffer exit commands work regardless of the input in the minibuffer. - ?
- If
t, the usual minibuffer exit commands won't exit unless the input completes to an element of collection. - ?
- If
confirm, the user can exit with any input, but is asked for confirmation if the input is not an element of collection. - ?
- If
confirm-after-completion, the user can exit with any input, but is asked for confirmation if the preceding command was a completion command (i.e., one of the commands inminibuffer-confirm-exit-commands) and the resulting input is not an element of collection. Completion Commands. - ?
- If a function, it is called with the input as the only argument. The function should return a non-
nilvalue if the input is acceptable. - ?
- Any other value of require-match behaves like
t, except that the exit commands won't exit if it performs completion.
However, empty input is always permitted, regardless of the value of require-match; in that case, completing-read returns the first element of default, if it is a list; "", if default is nil; or default. The string or strings in default are also available to the user through the history commands (Minibuffer Commands). In addition, the completion candidates are added to the "future history" when the values in default are exhausted by M-n; see minibuffer-default-add-function. The function completing-read uses minibuffer-local-completion-map as the keymap if require-match is nil, and uses minibuffer-local-must-match-map if require-match is non-nil. Completion Commands. The argument history specifies which history list variable to use for saving the input and for minibuffer history commands. It defaults to minibuffer-history. If history is the symbol t, history is not recorded. Minibuffer History. The argument initial is mostly deprecated; we recommend using a non-nil value only in conjunction with specifying a cons cell for history. Initial Input. For default input, use default instead. If the argument inherit-input-method is non-nil, then the minibuffer inherits the current input method (Input Methods) and the setting of enable-multibyte-characters (Text Representations) from whichever buffer was current before entering the minibuffer. If the variable completion-ignore-case is non-nil, completion ignores case when comparing the input against the possible matches. Basic Completion. In this mode of operation, predicate must also ignore case, or you will get surprising results. Here's an example of using completing-read:
(completing-read
"Complete a foo: "
'(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
nil t "fo")
;; After evaluation of the preceding expression
;; the following appears in the minibuffer:
---------- Buffer: Minibuffer ----------
Complete a foo: fo⋆
---------- Buffer: Minibuffer ----------
If the user then types DEL DEL b RET, completing-read returns barfoo. The completing-read function binds variables to pass information to the commands that actually do completion. They are described in the following section.
-
completing-read-function - The value of this variable must be a function, which is called by
completing-readto actually do its work. It should accept the same arguments ascompleting-read. This can be bound to a different function to completely override the normal behavior ofcompleting-read.
Minibuffer Commands that Do Completion
This section describes the keymaps, commands and user options used in the minibuffer to do completion.
-
minibuffer-completion-table - The value of this variable is the completion table (Basic Completion) used for completion in the minibuffer. This is the buffer-local variable that contains what
completing-readpasses totry-completion. It is used by minibuffer completion commands such asminibuffer-complete. -
minibuffer-completion-predicate - This variable's value is the predicate that
completing-readpasses totry-completion. The variable is also used by the other minibuffer completion functions. -
minibuffer-completion-confirm - This variable determines whether Emacs asks for confirmation before exiting the minibuffer;
completing-readsets this variable, and the functionminibuffer-complete-and-exitchecks the value before exiting. If the value isnil, confirmation is not required. If the value isconfirm, the user may exit with an input that is not a valid completion alternative, but Emacs asks for confirmation. If the value isconfirm-after-completion, the user may exit with an input that is not a valid completion alternative, but Emacs asks for confirmation if the user submitted the input right after any of the completion commands inminibuffer-confirm-exit-commands. -
minibuffer-confirm-exit-commands - This variable holds a list of commands that cause Emacs to ask for confirmation before exiting the minibuffer, if the require-match argument to
completing-readisconfirm-after-completion. The confirmation is requested if the user attempts to exit the minibuffer immediately after calling any command in this list. -
Command minibuffer-complete-word - This function completes the minibuffer contents by at most a single word. Even if the minibuffer contents have only one completion,
minibuffer-complete-worddoes not add any characters beyond the first character that is not a word constituent. Syntax Tables. -
Command minibuffer-complete - This function completes the minibuffer contents as far as possible.
-
Command minibuffer-complete-and-exit - This function completes the minibuffer contents, and exits if confirmation is not required, i.e., if
minibuffer-completion-confirmisnil. If confirmation is required, it is given by repeating this command immediately—the command is programmed to work without confirmation when run twice in succession. -
Command minibuffer-completion-help - This function creates a list of the possible completions of the current minibuffer contents. It works by calling
all-completionsusing the value of the variableminibuffer-completion-tableas the collection argument, and the value ofminibuffer-completion-predicateas the predicate argument. The list of completions is displayed as text in a buffer named*Completions*. -
display-completion-list - This function displays completions to the stream in
standard-output, usually a buffer. (Read and Print, for more information about streams.) The argument completions is normally a list of completions just returned byall-completions, but it does not have to be. Each element may be a symbol or a string, either of which is simply printed. It can also be a list of two strings, which is printed as if the strings were concatenated. The first of the two strings is the actual completion, the second string serves as annotation. This function is called byminibuffer-completion-help. A common way to use it is together withwith-output-to-temp-buffer, like this:
(with-output-to-temp-buffer "*Completions*"
(display-completion-list
(all-completions (buffer-string) my-alist)))
-
completion-auto-help - If this variable is non-
nil, the completion commands automatically display a list of possible completions whenever nothing can be completed because the next character is not uniquely determined. -
minibuffer-local-completion-map completing-readuses this value as the local keymap when an exact match of one of the completions is not required. By default, this keymap makes the following bindings:-
? minibuffer-completion-help-
SPC minibuffer-complete-word-
TAB minibuffer-complete
and uses minibuffer-local-map as its parent keymap (Definition of minibuffer-local-map).
-
minibuffer-local-must-match-map completing-readuses this value as the local keymap when an exact match of one of the completions is required. Therefore, no keys are bound toexit-minibuffer, the command that exits the minibuffer unconditionally. By default, this keymap makes the following bindings:-
C-j minibuffer-complete-and-exit-
RET minibuffer-complete-and-exit
and uses minibuffer-local-completion-map as its parent keymap.
-
minibuffer-local-filename-completion-map - This is a sparse keymap that simply unbinds
SPC; because filenames can contain spaces. The functionread-file-namecombines this keymap with eitherminibuffer-local-completion-maporminibuffer-local-must-match-map. -
minibuffer-beginning-of-buffer-movement - If non-
nil, theM-<command will move to the end of the prompt if point is after the end of the prompt. If point is at or before the end of the prompt, move to the start of the buffer. If this variable isnil, the command behaves likebeginning-of-buffer.
High-Level Completion Functions
This section describes the higher-level convenience functions for reading certain sorts of names with completion. In most cases, you should not call these functions in the middle of a Lisp function. When possible, do all minibuffer input as part of reading the arguments for a command, in the interactive specification. Defining Commands.
-
read-buffer - This function reads the name of a buffer and returns it as a string. It prompts with prompt. The argument default is the default name to use, the value to return if the user exits with an empty minibuffer. If non-
nil, it should be a string, a list of strings, or a buffer. If it is a list, the default value is the first element of this list. It is mentioned in the prompt, but is not inserted in the minibuffer as initial input. The argument prompt should be a string ending with a colon and a space. If default is non-nil, the function inserts it in prompt before the colon to follow the convention for reading from the minibuffer with a default value (Programming Tips). The optional argument require-match has the same meaning as incompleting-read. Minibuffer Completion. The optional argument predicate, if non-nil, specifies a function to filter the buffers that should be considered: the function will be called with every potential candidate as its argument, and should returnnilto reject the candidate, non-nilto accept it. In the following example, the user entersminibuffer.t, and then typesRET. The argument require-match ist, and the only buffer name starting with the given input isminibuffer.texi, so that name is the value.
(read-buffer "Buffer name: " "foo" t)
;; After evaluation of the preceding expression
;; the following prompt appears
;; with an empty minibuffer:
---------- Buffer: Minibuffer ----------
Buffer name (default foo): ⋆
---------- Buffer: Minibuffer ----------
;; The user types minibuffer.t <RET>.
=> "minibuffer.texi"
-
read-buffer-function - This variable, if non-
nil, specifies a function for reading buffer names.read-buffercalls this function instead of doing its usual work, with the same arguments passed toread-buffer. -
read-buffer-completion-ignore-case - If this variable is non-
nil,read-bufferignores case when performing completion while reading the buffer name. -
read-command - This function reads the name of a command and returns it as a Lisp symbol. The argument prompt is used as in
read-from-minibuffer. Recall that a command is anything for whichcommandpreturnst, and a command name is a symbol for whichcommandpreturnst. Interactive Call. The argument default specifies what to return if the user enters null input. It can be a symbol, a string or a list of strings. If it is a string,read-commandinterns it before returning it. If it is a list,read-commandinterns the first element of this list. If default isnil, that means no default has been specified; then if the user enters null input, the return value is(intern ""), that is, a symbol whose name is an empty string, and whose printed representation is##(Symbol Type).
(read-command "Command name? ") ;; After evaluation of the preceding expression ;; the following prompt appears with an empty minibuffer: ---------- Buffer: Minibuffer ---------- Command name? ---------- Buffer: Minibuffer ----------
If the user types forward-c RET, then this function returns forward-char. The read-command function is a simplified interface to completing-read. It uses the variable obarray so as to complete in the set of extant Lisp symbols, and it uses the commandp predicate so as to accept only command names:
(read-command PROMPT)
≡
(intern (completing-read PROMPT obarray
'commandp t nil))
-
read-variable - This function reads the name of a customizable variable and returns it as a symbol. Its arguments have the same form as those of
read-command. It behaves just likeread-command, except that it uses the predicatecustom-variable-pinstead ofcommandp. -
Command read-color - This function reads a string that is a color specification, either the color's name or an RGB hex value such as
#RRRGGGBBB. It prompts with prompt (default:"Color (name or #RGB triplet):") and provides completion for color names, but not for hex RGB values. In addition to names of standard colors, completion candidates include the foreground and background colors at point. Valid RGB values are described in Color Names. The function's return value is the string typed by the user in the minibuffer. However, when called interactively or if the optional argument convert is non-nil, it converts any input color name into the corresponding RGB value string and instead returns that. This function requires a valid color specification to be input. Empty color names are allowed when allow-empty is non-niland the user enters null input. Interactively, or when display is non-nil, the return value is also displayed in the echo area.
See also the functions read-coding-system and read-non-nil-coding-system, in User-Chosen Coding Systems, and read-input-method-name, in Input Methods.
Reading File Names
The high-level completion functions read-file-name, read-directory-name, and read-shell-command are designed to read file names, directory names, and shell commands, respectively. They provide special features, including automatic insertion of the default directory.
-
read-file-name - This function reads a file name, prompting with prompt and providing completion. As an exception, this function reads a file name using a graphical file dialog instead of the minibuffer, if all of the following are true:
- It is invoked via a mouse command.
- The selected frame is on a graphical display supporting such dialogs.
- The variable
use-dialog-boxis non-nil. Dialog Boxes. - The directory argument, described below, does not specify a remote file. Remote Files.
The exact behavior when using a graphical file dialog is platform-dependent. Here, we simply document the behavior when using the minibuffer. read-file-name does not automatically expand the returned file name. You can call expand-file-name yourself if an absolute file name is required. The optional argument require-match has the same meaning as in completing-read. Minibuffer Completion. The argument directory specifies the directory to use for completing relative file names. It should be an absolute directory name. If the variable insert-default-directory is non-nil, directory is also inserted in the minibuffer as initial input. It defaults to the current buffer's value of default-directory. If you specify initial, that is an initial file name to insert in the buffer (after directory, if that is inserted). In this case, point goes at the beginning of initial. The default for initial is nil—don't insert any file name. To see what initial does, try the command C-x C-v in a buffer visiting a file. Please note: we recommend using default rather than initial in most cases. If default is non-nil, then the function returns default if the user exits the minibuffer with the same non-empty contents that read-file-name inserted initially. The initial minibuffer contents are always non-empty if insert-default-directory is non-nil, as it is by default. default is not checked for validity, regardless of the value of require-match. However, if require-match is non-nil, the initial minibuffer contents should be a valid file (or directory) name. Otherwise read-file-name attempts completion if the user exits without any editing, and does not return default. default is also available through the history commands. If default is nil, read-file-name tries to find a substitute default to use in its place, which it treats in exactly the same way as if it had been specified explicitly. If default is nil, but initial is non-nil, then the default is the absolute file name obtained from directory and initial. If both default and initial are nil and the buffer is visiting a file, read-file-name uses the absolute file name of that file as default. If the buffer is not visiting a file, then there is no default. In that case, if the user types RET without any editing, read-file-name simply returns the pre-inserted contents of the minibuffer. If the user types RET in an empty minibuffer, this function returns an empty string, regardless of the value of require-match. This is, for instance, how the user can make the current buffer visit no file using M-x set-visited-file-name. If predicate is non-nil, it specifies a function of one argument that decides which file names are acceptable completion alternatives. A file name is an acceptable value if predicate returns non-nil for it. Here is an example of using read-file-name:
(read-file-name "The file is ") ;; After evaluation of the preceding expression ;; the following appears in the minibuffer: ---------- Buffer: Minibuffer ---------- The file is /gp/gnu/elisp/⋆ ---------- Buffer: Minibuffer ----------
Typing manual TAB results in the following:
---------- Buffer: Minibuffer ---------- The file is /gp/gnu/elisp/manual.texi⋆ ---------- Buffer: Minibuffer ----------
If the user types RET, read-file-name returns the file name as the string "/gp/gnu/elisp/manual.texi".
-
read-file-name-function - If non-
nil, this should be a function that accepts the same arguments asread-file-name. Whenread-file-nameis called, it calls this function with the supplied arguments instead of doing its usual work. -
read-file-name-completion-ignore-case - If this variable is non-
nil,read-file-nameignores case when performing completion. -
read-directory-name - This function is like
read-file-namebut allows only directory names as completion alternatives. If default isniland initial is non-nil,read-directory-nameconstructs a substitute default by combining directory (or the current buffer's default directory if directory isnil) and initial. If both default and initial arenil, this function uses directory as substitute default, or the current buffer's default directory if directory isnil. -
insert-default-directory - This variable is used by
read-file-name, and thus, indirectly, by most commands reading file names. (This includes all commands that use the code lettersforFin their interactive form. Code Characters for interactive.) Its value controls whetherread-file-namestarts by placing the name of the default directory in the minibuffer, plus the initial file name, if any. If the value of this variable isnil, thenread-file-namedoes not place any initial input in the minibuffer (unless you specify initial input with the initial argument). In that case, the default directory is still used for completion of relative file names, but is not displayed. If this variable isniland the initial minibuffer contents are empty, the user may have to explicitly fetch the next history element to access a default value. If the variable is non-nil, the initial minibuffer contents are always non-empty and the user can always request a default value by immediately typingRETin an unedited minibuffer. (See above.) For example:
;; Here the minibuffer starts out with the default directory. (let ((insert-default-directory t)) (read-file-name "The file is ")) ---------- Buffer: Minibuffer ---------- The file is ~lewis/manual/⋆ ---------- Buffer: Minibuffer ---------- ;; Here the minibuffer is empty and only the prompt ;; appears on its line. (let ((insert-default-directory nil)) (read-file-name "The file is ")) ---------- Buffer: Minibuffer ---------- The file is ⋆ ---------- Buffer: Minibuffer ----------
-
read-shell-command - This function reads a shell command from the minibuffer, prompting with prompt and providing intelligent completion. It completes the first word of the command using candidates that are appropriate for command names, and the rest of the command words as file names. This function uses
minibuffer-local-shell-command-mapas the keymap for minibuffer input. The history argument specifies the history list to use; if is omitted ornil, it defaults toshell-command-history(shell-command-history). The optional argument initial specifies the initial content of the minibuffer (Initial Input). The rest of args, if present, are used as the default and inherit-input-method arguments inread-from-minibuffer(Text from Minibuffer). -
minibuffer-local-shell-command-map - This keymap is used by
read-shell-commandfor completing command and file names that are part of a shell command. It usesminibuffer-local-mapas its parent keymap, and bindsTABtocompletion-at-point.
Completion Variables
Here are some variables that can be used to alter the default completion behavior.
-
completion-styles - The value of this variable is a list of completion style (symbols) to use for performing completion. A completion style is a set of rules for generating completions. Each symbol occurring this list must have a corresponding entry in
completion-styles-alist. -
completion-styles-alist - This variable stores a list of available completion styles. Each element in the list has the form
(STYLE TRY-COMPLETION ALL-COMPLETIONS DOC)
Here, style is the name of the completion style (a symbol), which may be used in the completion-styles variable to refer to this style; try-completion is the function that does the completion; all-completions is the function that lists the completions; and doc is a string describing the completion style. The try-completion and all-completions functions should each accept four arguments: string, collection, predicate, and point. The string, collection, and predicate arguments have the same meanings as in try-completion (Basic Completion), and the point argument is the position of point within string. Each function should return a non-nil value if it performed its job, and nil if it did not (e.g., if there is no way to complete string according to the completion style). When the user calls a completion command like minibuffer-complete (Completion Commands), Emacs looks for the first style listed in completion-styles and calls its try-completion function. If this function returns nil, Emacs moves to the next listed completion style and calls its try-completion function, and so on until one of the try-completion functions successfully performs completion and returns a non-nil value. A similar procedure is used for listing completions, via the all-completions functions. Completion Styles, for a description of the available completion styles.
-
completion-category-overrides - This variable specifies special completion styles and other completion behaviors to use when completing certain types of text. Its value should be an alist with elements of the form
(CATEGORY . ALIST). category is a symbol describing what is being completed; currently, thebuffer,file, andunicode-namecategories are defined, but others can be defined via specialized completion functions (Programmed Completion). alist is an association list describing how completion should behave for the corresponding category. The following alist keys are supported: -
styles - The value should be a list of completion styles (symbols).
-
cycle - The value should be a value for
completion-cycle-threshold(Completion Options) for this category.
Additional alist entries may be defined in the future.
-
completion-extra-properties - This variable is used to specify extra properties of the current completion command. It is intended to be let-bound by specialized completion commands. Its value should be a list of property and value pairs. The following properties are supported:
-
:annotation-function - The value should be a function to add annotations in the completions buffer. This function must accept one argument, a completion, and should either return
nilor a string to be displayed next to the completion. Unless this function puts own face on the annotation suffix string, thecompletions-annotationsface is added by default to that string. -
:affixation-function - The value should be a function to add prefixes and suffixes to completions. This function must accept one argument, a list of completions, and should return a list of annotated completions. Each element of the returned list must be a three-element list, the completion, a prefix string, and a suffix string. This function takes priority over
:annotation-function. -
:exit-function - The value should be a function to run after performing completion. The function should accept two arguments, string and status, where string is the text to which the field was completed, and status indicates what kind of operation happened:
finishedif text is now complete,soleif the text cannot be further completed but completion is not finished, orexactif the text is a valid completion but may be further completed.
Programmed Completion
Sometimes it is not possible or convenient to create an alist or an obarray containing all the intended possible completions ahead of time. In such a case, you can supply your own function to compute the completion of a given string. This is called programmed completion. Emacs uses programmed completion when completing file names (File Name Completion), among many other cases. To use this feature, pass a function as the collection argument to completing-read. The function completing-read arranges to pass your completion function along to try-completion, all-completions, and other basic completion functions, which will then let your function do all the work. The completion function should accept three arguments:
- The string to be completed.
- A predicate function with which to filter possible matches, or
nilif none. The function should call the predicate for each possible match, and ignore the match if the predicate returnsnil. - A flag specifying the type of completion operation to perform; see Basic Completion, for the details of those operations. This flag may be one of the following values.
- nil This specifies a
try-completionoperation. The function should returnnilif there are no matches; it should returntif the specified string is a unique and exact match; and it should return the longest common prefix substring of all matches otherwise. - t This specifies an
all-completionsoperation. The function should return a list of all possible completions of the specified string. - lambda This specifies a
test-completionoperation. The function should returntif the specified string is an exact match for some completion alternative;nilotherwise. - (boundaries . suffix) This specifies a
completion-boundariesoperation. The function should return(boundaries START . END), where start is the position of the beginning boundary in the specified string, and end is the position of the end boundary in suffix. If a Lisp program returns nontrivial boundaries, it should make sure that theall-completionsoperation is consistent with them. The completions returned byall-completionsshould only pertain to the piece of the prefix and suffix covered by the completion boundaries. Basic Completion, for the precise expected semantics of completion boundaries. - metadata This specifies a request for information about the state of the current completion. The return value should have the form
(metadata . ALIST), where alist is an alist whose elements are described below. If the flag has any other value, the completion function should returnnil.
The following is a list of metadata entries that a completion function may return in response to a metadata flag argument:
-
category - The value should be a symbol describing what kind of text the completion function is trying to complete. If the symbol matches one of the keys in
completion-category-overrides, the usual completion behavior is overridden. Completion Variables. -
annotation-function - The value should be a function for annotating completions. The function should take one argument, string, which is a possible completion. It should return a string, which is displayed after the completion string in the
*Completions*buffer. Unless this function puts own face on the annotation suffix string, thecompletions-annotationsface is added by default to that string. -
affixation-function - The value should be a function for adding prefixes and suffixes to completions. The function should take one argument, completions, which is a list of possible completions. It should return such a list of completions where each element contains a list of three elements: a completion, a prefix which is displayed before the completion string in the
*Completions*buffer, and a suffix displayed after the completion string. This function takes priority overannotation-function. -
group-function - The value should be a function for grouping the completion candidates. The function must take two arguments, completion, which is a completion candidate and transform, which is a boolean flag. If transform is
nil, the function must return the group title of the group to which the candidate belongs. The returned title can also benil. Otherwise the function must return the transformed candidate. The transformation can for example remove a redundant prefix, which is displayed in the group title. -
display-sort-function - The value should be a function for sorting completions. The function should take one argument, a list of completion strings, and return a sorted list of completion strings. It is allowed to alter the input list destructively.
-
cycle-sort-function - The value should be a function for sorting completions, when
completion-cycle-thresholdis non-niland the user is cycling through completion alternatives. Completion Options. Its argument list and return value are the same as fordisplay-sort-function. -
completion-table-dynamic - This function is a convenient way to write a function that can act as a programmed completion function. The argument function should be a function that takes one argument, a string, and returns a completion table (Basic Completion) containing all the possible completions. The table returned by function can also include elements that don't match the string argument; they are automatically filtered out by
completion-table-dynamic. In particular, function can ignore its argument and return a full list of all possible completions. You can think ofcompletion-table-dynamicas a transducer between function and the interface for programmed completion functions. If the optional argument switch-buffer is non-nil, and completion is performed in the minibuffer, function will be called with current buffer set to the buffer from which the minibuffer was entered. The return value ofcompletion-table-dynamicis a function that can be used as the 2nd argument totry-completionandall-completions. Note that this function will always return empty metadata and trivial boundaries. -
completion-table-with-cache - This is a wrapper for
completion-table-dynamicthat saves the last argument-result pair. This means that multiple lookups with the same argument only need to call function once. This can be useful when a slow operation is involved, such as calling an external process.
Completion in Ordinary Buffers
Although completion is usually done in the minibuffer, the completion facility can also be used on the text in ordinary Emacs buffers. In many major modes, in-buffer completion is performed by the C-M-i or M-TAB command, bound to completion-at-point. Symbol Completion. This command uses the abnormal hook variable completion-at-point-functions:
-
completion-at-point-functions - The value of this abnormal hook should be a list of functions, which are used to compute a completion table (Basic Completion) for completing the text at point. It can be used by major modes to provide mode-specific completion tables (Major Mode Conventions). When the command
completion-at-pointruns, it calls the functions in the list one by one, without any argument. Each function should returnnilunless it can and wants to take responsibility for the completion data for the text at point. Otherwise it should return a list of the following form:
(START END COLLECTION . PROPS)
start and end delimit the text to complete (which should enclose point). collection is a completion table for completing that text, in a form suitable for passing as the second argument to try-completion (Basic Completion); completion alternatives will be generated from this completion table in the usual way, via the completion styles defined in completion-styles (Completion Variables). props is a property list for additional information; any of the properties in completion-extra-properties are recognized (Completion Variables), as well as the following additional ones:
-
:predicate - The value should be a predicate that completion candidates need to satisfy.
-
:exclusive - If the value is
no, then if the completion table fails to match the text at point,completion-at-pointmoves on to the next function incompletion-at-point-functionsinstead of reporting a completion failure.
The functions on this hook should generally return quickly, since they may be called very often (e.g., from post-command-hook). Supplying a function for collection is strongly recommended if generating the list of completions is an expensive operation. Emacs may internally call functions in completion-at-point-functions many times, but care about the value of collection for only some of these calls. By supplying a function for collection, Emacs can defer generating completions until necessary. You can use completion-table-dynamic to create a wrapper function:
;; Avoid this pattern.
(let ((beg ...) (end ...) (my-completions (my-make-completions)))
(list beg end my-completions))
;; Use this instead.
(let ((beg ...) (end ...))
(list beg
end
(completion-table-dynamic
(lambda (_)
(my-make-completions)))))
Additionally, the collection should generally not be pre-filtered based on the current text between start and end, because that is the responsibility of the caller of completion-at-point-functions to do that according to the completion styles it decides to use. A function in completion-at-point-functions may also return a function instead of a list as described above. In that case, that returned function is called, with no argument, and it is entirely responsible for performing the completion. We discourage this usage; it is only intended to help convert old code to using completion-at-point. The first function in completion-at-point-functions to return a non-nil value is used by completion-at-point. The remaining functions are not called. The exception to this is when there is an :exclusive specification, as described above. The following function provides a convenient way to perform completion on an arbitrary stretch of text in an Emacs buffer:
-
completion-in-region - This function completes the text in the current buffer between the positions start and end, using collection. The argument collection has the same meaning as in
try-completion(Basic Completion). This function inserts the completion text directly into the current buffer. Unlikecompleting-read(Minibuffer Completion), it does not activate the minibuffer. For this function to work, point must be somewhere between start and end.
Yes-or-No Queries
This section describes functions used to ask the user a yes-or-no question. The function y-or-n-p can be answered with a single character; it is useful for questions where an inadvertent wrong answer will not have serious consequences. yes-or-no-p is suitable for more momentous questions, since it requires three or four characters to answer. If either of these functions is called in a command that was invoked using the mouse or some other window-system gesture, or in a command invoked via a menu, then they use a dialog box or pop-up menu to ask the question if dialog boxes are supported. Otherwise, they use keyboard input. You can force use either of the mouse or of keyboard input by binding last-nonmenu-event to a suitable value around the call—bind it to t to force keyboard interaction, and to a list to force dialog boxes. Both yes-or-no-p and y-or-n-p use the minibuffer.
-
y-or-n-p - This function asks the user a question, expecting input in the minibuffer. It returns
tif the user typesy,nilif the user typesn. This function also acceptsSPCto mean yes andDELto mean no. It acceptsC-]andC-gto quit, because the question uses the minibuffer and for that reason the user might try to useC-]to get out. The answer is a single character, with noRETneeded to terminate it. Upper and lower case are equivalent. "Asking the question" means printing prompt in the minibuffer, followed by the string(y or n). If the input is not one of the expected answers (y,n,SPC,DEL, or something that quits), the function respondsPlease answer y or n., and repeats the request. This function actually uses the minibuffer, but does not allow editing of the answer. The cursor moves to the minibuffer while the question is being asked. The answers and their meanings, evenyandn, are not hardwired, and are specified by the keymapquery-replace-map(Search and Replace). In particular, if the user enters the special responsesrecenter,scroll-up,scroll-down,scroll-other-window, orscroll-other-window-down(respectively bound toC-l,C-v,M-v,C-M-vandC-M-S-vinquery-replace-map), this function performs the specified window recentering or scrolling operation, and poses the question again. If you bindhelp-form(Help Functions) to a non-nilvalue while callingy-or-n-p, then pressinghelp-charcauses it to evaluatehelp-formand display the result.help-charis automatically added to prompt. -
y-or-n-p-with-timeout - Like
y-or-n-p, except that if the user fails to answer within seconds seconds, this function stops waiting and returns default. It works by setting up a timer; see Timers. The argument seconds should be a number. -
yes-or-no-p - This function asks the user a question, expecting input in the minibuffer. It returns
tif the user entersyes,nilif the user typesno. The user must typeRETto finalize the response. Upper and lower case are equivalent.yes-or-no-pstarts by displaying prompt in the minibuffer, followed by(yes or no). The user must type one of the expected responses; otherwise, the function respondsPlease answer yes or no., waits about two seconds and repeats the request.yes-or-no-prequires more work from the user thany-or-n-pand is appropriate for more crucial decisions. Here is an example:
(yes-or-no-p "Do you really want to remove everything? ") ;; After evaluation of the preceding expression ;; the following prompt appears ;; with an empty minibuffer: ---------- Buffer: minibuffer ---------- Do you really want to remove everything? (yes or no) ---------- Buffer: minibuffer ----------
If the user first types y RET, which is invalid because this function demands the entire word yes, it responds by displaying these prompts, with a brief pause between them:
---------- Buffer: minibuffer ---------- Please answer yes or no. Do you really want to remove everything? (yes or no) ---------- Buffer: minibuffer ----------
Asking Multiple-Choice Questions
This section describes facilities for asking the user more complex questions or several similar questions. When you have a series of similar questions to ask, such as "Do you want to save this buffer?" for each buffer in turn, you should use map-y-or-n-p to ask the collection of questions, rather than asking each question individually. This gives the user certain convenient facilities such as the ability to answer the whole series at once.
-
map-y-or-n-p - This function asks the user a series of questions, reading a single-character answer in the echo area for each one. The value of list specifies the objects to ask questions about. It should be either a list of objects or a generator function. If it is a function, it will be called with no arguments, and should return either the next object to ask about, or
nil, meaning to stop asking questions. The argument prompter specifies how to ask each question. If prompter is a string, the question text is computed like this:
(format PROMPTER OBJECT)
where object is the next object to ask about (as obtained from list). Formatting Strings, for more information about format. If prompter is not a string, it should be a function of one argument (the object to ask about) and should return the question text for that object. If the value prompter returns is a string, that is the question to ask the user. The function can also return t, meaning to act on this object without asking the user, or nil, which means to silently ignore this object. The argument actor says how to act on the objects for which the user answers yes. It should be a function of one argument, and will be called with each object from list for which the user answers yes. If the argument help is given, it should be a list of this form:
(SINGULAR PLURAL ACTION)
where singular is a string containing a singular noun that describes a single object to be acted on, plural is the corresponding plural noun, and action is a transitive verb describing what actor does with the objects. If you don't specify help, it defaults to the list ("object" "objects" "act on"). Each time a question is asked, the user can answer as follows:
-
y,Y, orSPC - act on the object
-
n,N, orDEL - skip the object
-
! - act on all the following objects
-
ESCorq - exit (skip all following objects)
-
.(period) - act on the object and then exit
-
C-h - get help
These are the same answers that query-replace accepts. The keymap query-replace-map defines their meaning for map-y-or-n-p as well as for query-replace; see Search and Replace. You can use action-alist to specify additional possible answers and what they mean. If provided, action-alist should be an alist whose elements are of the form (CHAR FUNCTION HELP). Each of the alist elements defines one additional answer. In each element, char is a character (the answer); function is a function of one argument (an object from list); and help is a string. When the user responds with char, map-y-or-n-p calls function. If it returns non-nil, the object is considered to have been acted upon, and map-y-or-n-p advances to the next object in list. If it returns nil, the prompt is repeated for the same object. If the user requests help, the text in help is used to describe these additional answers. Normally, map-y-or-n-p binds cursor-in-echo-area while prompting. But if no-cursor-in-echo-area is non-nil, it does not do that. If map-y-or-n-p is called in a command that was invoked using the mouse or some other window-system gesture, or a command invoked via a menu, then it uses a dialog box or pop-up menu to ask the question if dialog boxes are supported. In this case, it does not use keyboard input or the echo area. You can force use either of the mouse or of keyboard input by binding last-nonmenu-event to a suitable value around the call—bind it to t to force keyboard interaction, and to a list to force dialog boxes. The return value of map-y-or-n-p is the number of objects acted on. If you need to ask the user a question that might have more than just 2 answers, use read-answer.
-
read-answer - This function prompts the user with text in question, which should end in the
SPCcharacter. The function includes in the prompt the possible responses in answers by appending them to the end of question. The possible responses are provided in answers as an alist whose elements are of the following form:
(LONG-ANSWER SHORT-ANSWER HELP-MESSAGE)
where long-answer is the complete text of the user response, a string; short-answer is a short form of the same response, a single character or a function key; and help-message is the text that describes the meaning of the answer. If the variable read-answer-short is non-nil, the prompt will show the short variants of the possible answers and the user is expected to type the single characters/keys shown in the prompt; otherwise the prompt will show the long variants of the answers, and the user is expected to type the full text of one of the answers and end by pressing RET. If use-dialog-box is non-nil, and this function was invoked by mouse events, the question and the answers will be displayed in a GUI dialog box. The function returns the text of the long-answer selected by the user, regardless of whether long or short answers were shown in the prompt and typed by the user. Here is an example of using this function:
(let ((read-answer-short t))
(read-answer "Foo "
'(("yes" ?y "perform the action")
("no" ?n "skip to the next")
("all" ?! "perform for the rest without more questions")
("help" ?h "show help")
("quit" ?q "exit"))))-
read-char-from-minibuffer - This function uses the minibuffer to read and return a single character. Optionally, it ignores any input that is not a member of chars, a list of accepted characters. The history argument specifies the history list symbol to use; if it is omitted or
nil, this function doesn't use the history. If you bindhelp-form(Help Functions) to a non-nilvalue while callingread-char-from-minibuffer, then pressinghelp-charcauses it to evaluatehelp-formand display the result.
Reading a Password
To read a password to pass to another program, you can use the function read-passwd.
-
read-passwd - This function reads a password, prompting with prompt. It does not echo the password as the user types it; instead, it echoes
*for each character in the password. If you want to apply another character to hide the password, let-bind the variableread-hide-charwith that character. The optional argument confirm, if non-nil, says to read the password twice and insist it must be the same both times. If it isn't the same, the user has to type it over and over until the last two times match. The optional argument default specifies the default password to return if the user enters empty input. If default isnil, thenread-passwdreturns the null string in that case.
Minibuffer Commands
This section describes some commands meant for use in the minibuffer.
-
Command exit-minibuffer - This command exits the active minibuffer. It is normally bound to keys in minibuffer local keymaps. The command throws an error if the current buffer is a minibuffer, but not the active minibuffer.
-
Command self-insert-and-exit - This command exits the active minibuffer after inserting the last character typed on the keyboard (found in
last-command-event; Command Loop Info). -
Command previous-history-element - This command replaces the minibuffer contents with the value of the /n/th previous (older) history element.
-
Command next-history-element - This command replaces the minibuffer contents with the value of the /n/th more recent history element. The position in the history can go beyond the current position and invoke "future history" (Text from Minibuffer).
-
Command previous-matching-history-element - This command replaces the minibuffer contents with the value of the n/th previous (older) history element that matches /pattern (a regular expression).
-
Command next-matching-history-element - This command replaces the minibuffer contents with the value of the n/th next (newer) history element that matches /pattern (a regular expression).
-
Command previous-complete-history-element - This command replaces the minibuffer contents with the value of the /n/th previous (older) history element that completes the current contents of the minibuffer before the point.
-
Command next-complete-history-element - This command replaces the minibuffer contents with the value of the /n/th next (newer) history element that completes the current contents of the minibuffer before the point.
-
Command goto-history-element - This function puts element of the minibuffer history in the minibuffer. The argument nabs specifies the absolute history position in descending order, where 0 means the current element and a positive number n means the n/th previous element. NABS being a negative number -/n means the /n/th entry of "future history". When this function reaches the end of the default values provided by
read-from-minibuffer(Text from Minibuffer) andcompleting-read(Minibuffer Completion), it adds the completion candidates to "future history", see minibuffer-default-add-function.
Minibuffer Windows
These functions access and select minibuffer windows, test whether they are active and control how they get resized.
-
minibuffer-window - This function returns the minibuffer window used for frame frame. If frame is
nil, that stands for the selected frame. Note that the minibuffer window used by a frame need not be part of that frame—a frame that has no minibuffer of its own necessarily uses some other frame's minibuffer window. The minibuffer window of a minibuffer-less frame can be changed by setting that frame'sminibufferframe parameter (Buffer Parameters). -
set-minibuffer-window - This function specifies window as the minibuffer window to use. This affects where the minibuffer is displayed if you put text in it without invoking the usual minibuffer commands. It has no effect on the usual minibuffer input functions because they all start by choosing the minibuffer window according to the selected frame.
-
window-minibuffer-p - This function returns
tif window is a minibuffer window. window defaults to the selected window.
The following function returns the window showing the currently active minibuffer.
-
active-minibuffer-window - This function returns the window of the currently active minibuffer, or
nilif there is no active minibuffer.
It is not sufficient to determine whether a given window shows the currently active minibuffer by comparing it with the result of (minibuffer-window), because there can be more than one minibuffer window if there is more than one frame.
-
minibuffer-window-active-p - This function returns non-
nilif window shows the currently active minibuffer.
The following two options control whether minibuffer windows are resized automatically and how large they can get in the process.
-
resize-mini-windows - This option specifies whether minibuffer windows are resized automatically. The default value is
grow-only, which means that a minibuffer window by default expands automatically to accommodate the text it displays and shrinks back to one line as soon as the minibuffer gets empty. If the value ist, Emacs will always try to fit the height of a minibuffer window to the text it displays (with a minimum of one line). If the value isnil, a minibuffer window never changes size automatically. In that case the window resizing commands (Resizing Windows) can be used to adjust its height. -
max-mini-window-height - This option provides a maximum height for resizing minibuffer windows automatically. A floating-point number specifies the maximum height as a fraction of the frame's height; an integer specifies the maximum height in units of the frame's canonical character height (Frame Font). The default value is 0.25.
Note that the values of the above two variables take effect at display time, so let-binding them around code which produces echo-area messages will not work. If you want to prevent resizing of minibuffer windows when displaying long messages, bind the message-truncate-lines variable instead (Echo Area Customization). The option resize-mini-windows does not affect the behavior of minibuffer-only frames (Frame Layout). The following option allows to automatically resize such frames as well.
-
resize-mini-frames - If this is
nil, minibuffer-only frames are never resized automatically. If this is a function, that function is called with the minibuffer-only frame to be resized as sole argument. At the time this function is called, the buffer of the minibuffer window of that frame is the buffer whose contents will be shown the next time that window is redisplayed. The function is expected to fit the frame to the buffer in some appropriate way. Any other non-nilvalue means to resize minibuffer-only frames by callingfit-mini-frame-to-buffer, a function that behaves likefit-frame-to-buffer(Resizing Windows) but does not strip leading or trailing empty lines from the buffer text.
Minibuffer Contents
These functions access the minibuffer prompt and contents.
-
minibuffer-prompt - This function returns the prompt string of the currently active minibuffer. If no minibuffer is active, it returns
nil. -
minibuffer-prompt-end - This function returns the current position of the end of the minibuffer prompt, if a minibuffer is current. Otherwise, it returns the minimum valid buffer position.
-
minibuffer-prompt-width - This function returns the current display-width of the minibuffer prompt, if a minibuffer is current. Otherwise, it returns zero.
-
minibuffer-contents - This function returns the editable contents of the minibuffer (that is, everything except the prompt) as a string, if a minibuffer is current. Otherwise, it returns the entire contents of the current buffer.
-
minibuffer-contents-no-properties - This is like
minibuffer-contents, except that it does not copy text properties, just the characters themselves. Text Properties. -
Command delete-minibuffer-contents - This command erases the editable contents of the minibuffer (that is, everything except the prompt), if a minibuffer is current. Otherwise, it erases the entire current buffer.
Recursive Minibuffers
These functions and variables deal with recursive minibuffers (Recursive Editing):
-
minibuffer-depth - This function returns the current depth of activations of the minibuffer, a nonnegative integer. If no minibuffers are active, it returns zero.
-
enable-recursive-minibuffers - If this variable is non-
nil, you can invoke commands (such asfind-file) that use minibuffers even while the minibuffer is active. Such invocation produces a recursive editing level for a new minibuffer. By default, the outer-level minibuffer is invisible while you are editing the inner one. If you haveminibuffer-follows-selected-frameset tonil, you can have minibuffers visible on several frames at the same time. Basic Minibuffer. If this variable isnil, you cannot invoke minibuffer commands when the minibuffer is active, not even if you switch to another window to do it.
If a command name has a property enable-recursive-minibuffers that is non-nil, then the command can use the minibuffer to read arguments even if it is invoked from the minibuffer. A command can also achieve this by binding enable-recursive-minibuffers to t in the interactive declaration (Using Interactive). The minibuffer command next-matching-history-element (normally M-s in the minibuffer) does the latter.
Inhibiting Interaction
It's sometimes useful to be able to run Emacs as a headless server process that responds to commands given over a network connection. However, Emacs is primarily a platform for interactive usage, so many commands prompt the user for feedback in certain anomalous situations. This makes this use case more difficult, since the server process will just hang waiting for user input. Binding the inhibit-interaction variable to something non-nil makes Emacs signal a inhibited-interaction error instead of prompting, which can then be used by the server process to handle these situations. Here's a typical use case:
(let ((inhibit-interaction t))
(respond-to-client
(condition-case err
(my-client-handling-function)
(inhibited-interaction err))))
If my-client-handling-function ends up calling something that asks the user for something (via y-or-n-p or read-from-minibuffer or the like), an inhibited-interaction error is signaled instead. The server code then catches that error and reports it to the client.
Minibuffer Miscellany
-
minibufferp - This function returns non-
nilif buffer-or-name is a minibuffer. If buffer-or-name is omitted ornil, it tests the current buffer. When live is non-nil, the function returns non-nilonly when buffer-or-name is an active minibuffer. -
minibuffer-setup-hook - This is a normal hook that is run whenever a minibuffer is entered. Hooks.
-
minibuffer-with-setup-hook - This macro executes body after arranging for the specified function to be called via
minibuffer-setup-hook. By default, function is called before the other functions in theminibuffer-setup-hooklist, but if function is of the form(:append FUNC), func will be called after the other hook functions. The body forms should not use the minibuffer more than once. If the minibuffer is re-entered recursively, function will only be called once, for the outermost use of the minibuffer. -
minibuffer-exit-hook - This is a normal hook that is run whenever a minibuffer is exited. Hooks.
-
minibuffer-help-form - The current value of this variable is used to rebind
help-formlocally inside the minibuffer (Help Functions). -
minibuffer-scroll-window - If the value of this variable is non-
nil, it should be a window object. When the functionscroll-other-windowis called in the minibuffer, it scrolls this window (Textual Scrolling). -
minibuffer-selected-window - This function returns the window that was selected just before the minibuffer window was selected. If the selected window is not a minibuffer window, it returns
nil. -
minibuffer-message - This function is like
message(Displaying Messages), but it displays the messages specially when the user types in the minibuffer, typically because Emacs prompted the user for some input. When the minibuffer is the current buffer, this function displays the message specified by string temporarily at the end of the minibuffer text, and thus avoids hiding the minibuffer text by the echo-area display of the message. It leaves the message on display for a few seconds, or until the next input event arrives, whichever comes first. The variableminibuffer-message-timeoutspecifies the number of seconds to wait in the absence of input. It defaults to 2. If args is non-nil, the actual message is obtained by passing string and args throughformat-message. Formatting Strings. If called when the minibuffer is not the current buffer, this function just callsmessage, and thus string will be shown in the echo-area. -
Command minibuffer-inactive-mode - This is the major mode used in inactive minibuffers. It uses keymap
minibuffer-inactive-mode-map. This can be useful if the minibuffer is in a separate frame. Minibuffers and Frames.