changeset 81722:8215e5c92612

Document how to get back the old binding of SPC in file prompts.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 06 Jul 2007 16:14:39 +0000
parents 59741e45a674
children 4e74ad9f4345
files etc/NEWS.22
diffstat 1 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/etc/NEWS.22	Fri Jul 06 12:58:16 2007 +0000
+++ b/etc/NEWS.22	Fri Jul 06 16:14:39 2007 +0000
@@ -261,6 +261,14 @@
 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.