aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-12-08 17:58:35 +0000
committerRichard M. Stallman2005-12-08 17:58:35 +0000
commitc90475c9f9c64b0e5fac2f524556df5da9c42ea0 (patch)
treebd9c2c70444e767be1c15f5658f24d7cfccb85c0
parent010b7eace074b8514dbc00642d9fbc99e064595c (diff)
downloademacs-c90475c9f9c64b0e5fac2f524556df5da9c42ea0.tar.gz
emacs-c90475c9f9c64b0e5fac2f524556df5da9c42ea0.zip
(Completion Commands, Completion):
In file name input, SPC does not do completion.
-rw-r--r--man/mini.texi14
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
198argument. @kbd{?} is defined to display a list of possible completions 198argument. @kbd{?} is defined to display a list of possible completions
199of what you have inserted. 199of 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
202command, it provides a list of all available Emacs command names to 202a command, it provides a list of all available Emacs command names to
203complete against. The completion keys match the minibuffer text 203complete against. The completion keys match the minibuffer text
204against all the command names, find any additional name characters 204against all the command names, find any additional name characters
205implied by the ones already present in the minibuffer, and add those 205implied by the ones already present in the minibuffer, and add those
206characters to the ones you have given. This is what makes it possible 206characters to the ones you have given. This is what makes it possible
207to type @kbd{M-x ins @key{SPC} b @key{RET}} instead of @kbd{M-x 207to type @kbd{M-x ins @key{SPC} b @key{RET}} instead of @kbd{M-x
208insert-buffer @key{RET}} (for example). 208insert-buffer @key{RET}} (for example). (@key{SPC} does not do
209completion in reading file names, because it is common to use spaces
210in 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
211in most of the names that you can complete (buffer names, file names and 213in most of the names that you can complete (buffer names, file names and
@@ -260,8 +262,10 @@ when completion is available.
260Complete the text before point in the minibuffer as much as possible 262Complete 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}
263Complete the minibuffer text before point, but don't go beyond one word 265Complete the minibuffer text before point, but don't go beyond one
264(@code{minibuffer-complete-word}). 266word (@code{minibuffer-complete-word}). @key{SPC} for completion is
267not available when entering a file name, since some users often put
268spaces in filenames.
265@item @key{RET} 269@item @key{RET}
266Submit the text in the minibuffer as the argument, possibly completing 270Submit the text in the minibuffer as the argument, possibly completing
267first as described 271first as described