changeset 78072:51ee6159fec2

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:13:37 +0000
parents eee9205202c1
children 36ddacf0d44b
files etc/NEWS
diffstat 1 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/etc/NEWS	Wed Jul 04 16:18:49 2007 +0000
+++ b/etc/NEWS	Fri Jul 06 16:13:37 2007 +0000
@@ -264,6 +264,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.