Completion Example Completion Strict Completion
Here is a list of the completion commands defined in the minibuffer when completion is available.
TAB
|
Complete the text in the minibuffer as much as possible
( |
SPC
|
Complete the minibuffer text, but don't go beyond one word
(minibuffer-complete-word ).
|
RET
|
Submit the text in the minibuffer as the argument, possibly completing
first as described below (minibuffer-complete-and-exit ).
|
? | Print a list of all possible completions of the text in the minibuffer
(minibuffer-list-completions ).
|
SPC
completes much like TAB
, but never goes beyond the
next hyphen or space. If you have `auto-f
' in the minibuffer and
type SPC
, it finds that the completion is `auto-fill-mode
',
but it stops completing after `fill-
'. This gives
`auto-fill-
'. Another SPC
at this point completes all the
way to `auto-fill-mode
'. SPC
in the minibuffer when
completion is available runs the command
minibuffer-complete-word
.
Here are some commands you can use to choose a completion from a window that displays a list of completions:
Mouse-2 |
Clicking mouse button 2 on a completion in the list of possible
completions chooses that completion ( |
PRIOR
M-v |
Typing |
RET
|
Typing |
RIGHT
|
Typing the right-arrow key |
LEFT
|
Typing the left-arrow key |