Mercurial > emacs
changeset 98897:3bc1332e6140
(Reading File Names): Document `read-shell-command' and
`minibuffer-local-shell-command-map'.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sun, 19 Oct 2008 16:09:24 +0000 |
parents | b04b1b0d5866 |
children | a65d1e18ba02 |
files | doc/lispref/minibuf.texi |
diffstat | 1 files changed, 31 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/lispref/minibuf.texi Sun Oct 19 15:28:07 2008 +0000 +++ b/doc/lispref/minibuf.texi Sun Oct 19 16:09:24 2008 +0000 @@ -632,7 +632,8 @@ * Completion Commands:: Minibuffer commands that do completion. * High-Level Completion:: Convenient special cases of completion (reading buffer name, file name, etc.) -* Reading File Names:: Using completion to read file names. +* Reading File Names:: Using completion to read file names and + shell commands. * Programmed Completion:: Writing your own completion-function. @end menu @@ -1102,7 +1103,7 @@ @end defvar @node High-Level Completion -@subsection High-Level Completion Functions +@subsection High-Level Completion Functions This section describes the higher-level convenient functions for reading certain sorts of names with completion. @@ -1275,9 +1276,9 @@ @cindex read file names @cindex prompt for file name - Here is another high-level completion function, designed for reading a -file name. It provides special features including automatic insertion -of the default directory. + Here is a couple of other high-level completion function, designed +for reading file names and shell commands. They provide special +features including automatic insertion of the default directory. @defun read-file-name prompt &optional directory default existing initial predicate This function reads a file name in the minibuffer, prompting with @@ -1460,6 +1461,31 @@ @end example @end defopt +@defun read-shell-command prompt &optional initial-contents hist &rest args +This function reads a shell command from the minibuffer, prompting +with @var{prompt} and providing intelligent completion. It completes +the first word of the command using candidates that are appropriate +for command names. The rest of the shell command arguments are +completed as file names. + +This function works by calling @code{read-from-minibuffer} +(@pxref{Text from Minibuffer}), passing it +@code{minibuffer-local-shell-command-map} as the @var{keymap} +argument. The optional arguments @var{initial-contents} and +@var{hist} are passed to @code{read-from-minibuffer} unaltered, except +that if @var{hist} is omitted or @code{nil}, it defaults to +@code{shell-command-history} (@pxref{Minibuffer History, +shell-command-history}), and the @var{read} argument is passed as +@code{nil}. The rest of @var{args}, if present, are used by +@code{read-from-minibuffer} as its @var{default} and +@var{inherit-input-method} arguments. +@end defun + +@defvar minibuffer-local-shell-command-map +This keymap is used by @code{read-shell-command} for completing +command and file names that are part of a shell command. +@end defvar + @node Programmed Completion @subsection Programmed Completion @cindex programmed completion