]> git.eshelyaron.com Git - emacs.git/commitdiff
Document how to get back the old binding of SPC in file prompts.
authorEli Zaretskii <eliz@gnu.org>
Fri, 6 Jul 2007 16:14:39 +0000 (16:14 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 6 Jul 2007 16:14:39 +0000 (16:14 +0000)
etc/NEWS.22

index d210c32700b1128f048c75d7161272c55424965e..6ce691b0f41036de72e09bc5e26d4b1df7883fac 100644 (file)
@@ -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.