diff options
author | Eli Zaretskii <eliz@gnu.org> | 2007-07-06 16:14:39 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2007-07-06 16:14:39 +0000 |
commit | 3ada466d17d737ccbdef16f89214156d54325f61 (patch) | |
tree | 0135654012e0a09f68599eb10fde721effbc9e84 /etc/NEWS.22 | |
parent | ddd7c238540f6e8365d45408f8560d32db1e4510 (diff) | |
download | emacs-3ada466d17d737ccbdef16f89214156d54325f61.tar.gz |
Document how to get back the old binding of SPC in file prompts.
Diffstat (limited to 'etc/NEWS.22')
-rw-r--r-- | etc/NEWS.22 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/etc/NEWS.22 b/etc/NEWS.22 index d210c32700b..6ce691b0f41 100644 --- a/etc/NEWS.22 +++ b/etc/NEWS.22 @@ -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 "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 to the text before point. If there is text in the buffer after point, it remains unchanged. |