mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 03:40:56 -08:00
Document how to get back the old binding of SPC in file prompts.
This commit is contained in:
parent
ddd7c23854
commit
3ada466d17
1 changed files with 8 additions and 0 deletions
|
|
@ -261,6 +261,14 @@ need to quote the space with a C-q. The underlying changes in the
|
||||||
keymaps that are active in the minibuffer are described below under
|
keymaps that are active in the minibuffer are described below under
|
||||||
"New keymaps for typing file names".
|
"New keymaps for typing file names".
|
||||||
|
|
||||||
|
If you want the old behavior back, put these two key bindings to your
|
||||||
|
~/.emacs init file:
|
||||||
|
|
||||||
|
(define-key minibuffer-local-filename-completion-map
|
||||||
|
" " 'minibuffer-complete-word)
|
||||||
|
(define-key minibuffer-local-must-match-filename-map
|
||||||
|
" " 'minibuffer-complete-word)
|
||||||
|
|
||||||
** The completion commands TAB, SPC and ? in the minibuffer apply only
|
** The completion commands TAB, SPC and ? in the minibuffer apply only
|
||||||
to the text before point. If there is text in the buffer after point,
|
to the text before point. If there is text in the buffer after point,
|
||||||
it remains unchanged.
|
it remains unchanged.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue