diff options
author | Eli Zaretskii <eliz@gnu.org> | 2007-07-06 16:13:37 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2007-07-06 16:13:37 +0000 |
commit | 325ba046131c3366eded009f5b472cbf5b594dd0 (patch) | |
tree | 7c18ddf0d40eba0aeb3ed28644e26a79bb598d29 /etc/NEWS | |
parent | 4dc4bb3072280a9c7a13ef9379b9c7688c7c816c (diff) | |
download | emacs-325ba046131c3366eded009f5b472cbf5b594dd0.tar.gz |
Document how to get back the old binding of SPC in file prompts.
Diffstat (limited to 'etc/NEWS')
-rw-r--r-- | etc/NEWS | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -264,6 +264,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. |