diff options
| author | Richard M. Stallman | 2005-12-08 17:58:35 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-12-08 17:58:35 +0000 |
| commit | c90475c9f9c64b0e5fac2f524556df5da9c42ea0 (patch) | |
| tree | bd9c2c70444e767be1c15f5658f24d7cfccb85c0 | |
| parent | 010b7eace074b8514dbc00642d9fbc99e064595c (diff) | |
| download | emacs-c90475c9f9c64b0e5fac2f524556df5da9c42ea0.tar.gz emacs-c90475c9f9c64b0e5fac2f524556df5da9c42ea0.zip | |
(Completion Commands, Completion):
In file name input, SPC does not do completion.
| -rw-r--r-- | man/mini.texi | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/man/mini.texi b/man/mini.texi index 5264a13bd9a..a39251dedea 100644 --- a/man/mini.texi +++ b/man/mini.texi | |||
| @@ -198,14 +198,16 @@ into a longer string that it stands for, by matching it against a set of | |||
| 198 | argument. @kbd{?} is defined to display a list of possible completions | 198 | argument. @kbd{?} is defined to display a list of possible completions |
| 199 | of what you have inserted. | 199 | of what you have inserted. |
| 200 | 200 | ||
| 201 | For example, when @kbd{M-x} uses the minibuffer to read the name of a | 201 | For example, when @kbd{M-x} uses the minibuffer to read the name of |
| 202 | command, it provides a list of all available Emacs command names to | 202 | a command, it provides a list of all available Emacs command names to |
| 203 | complete against. The completion keys match the minibuffer text | 203 | complete against. The completion keys match the minibuffer text |
| 204 | against all the command names, find any additional name characters | 204 | against all the command names, find any additional name characters |
| 205 | implied by the ones already present in the minibuffer, and add those | 205 | implied by the ones already present in the minibuffer, and add those |
| 206 | characters to the ones you have given. This is what makes it possible | 206 | characters to the ones you have given. This is what makes it possible |
| 207 | to type @kbd{M-x ins @key{SPC} b @key{RET}} instead of @kbd{M-x | 207 | to type @kbd{M-x ins @key{SPC} b @key{RET}} instead of @kbd{M-x |
| 208 | insert-buffer @key{RET}} (for example). | 208 | insert-buffer @key{RET}} (for example). (@key{SPC} does not do |
| 209 | completion in reading file names, because it is common to use spaces | ||
| 210 | in file names on some systems.) | ||
| 209 | 211 | ||
| 210 | Case is normally significant in completion, because it is significant | 212 | Case is normally significant in completion, because it is significant |
| 211 | in most of the names that you can complete (buffer names, file names and | 213 | in most of the names that you can complete (buffer names, file names and |
| @@ -260,8 +262,10 @@ when completion is available. | |||
| 260 | Complete the text before point in the minibuffer as much as possible | 262 | Complete the text before point in the minibuffer as much as possible |
| 261 | (@code{minibuffer-complete}). | 263 | (@code{minibuffer-complete}). |
| 262 | @item @key{SPC} | 264 | @item @key{SPC} |
| 263 | Complete the minibuffer text before point, but don't go beyond one word | 265 | Complete the minibuffer text before point, but don't go beyond one |
| 264 | (@code{minibuffer-complete-word}). | 266 | word (@code{minibuffer-complete-word}). @key{SPC} for completion is |
| 267 | not available when entering a file name, since some users often put | ||
| 268 | spaces in filenames. | ||
| 265 | @item @key{RET} | 269 | @item @key{RET} |
| 266 | Submit the text in the minibuffer as the argument, possibly completing | 270 | Submit the text in the minibuffer as the argument, possibly completing |
| 267 | first as described | 271 | first as described |