comparison etc/NEWS.22 @ 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 389e5c0c02ab
children 91e9b5441176
comparison
equal deleted inserted replaced
81721:59741e45a674 81722:8215e5c92612
258 ** When Emacs prompts for file names, SPC no longer completes the file name. 258 ** When Emacs prompts for file names, SPC no longer completes the file name.
259 This is so filenames with embedded spaces could be input without the 259 This is so filenames with embedded spaces could be input without the
260 need to quote the space with a C-q. The underlying changes in the 260 need to quote the space with a C-q. The underlying changes in the
261 keymaps that are active in the minibuffer are described below under 261 keymaps that are active in the minibuffer are described below under
262 "New keymaps for typing file names". 262 "New keymaps for typing file names".
263
264 If you want the old behavior back, put these two key bindings to your
265 ~/.emacs init file:
266
267 (define-key minibuffer-local-filename-completion-map
268 " " 'minibuffer-complete-word)
269 (define-key minibuffer-local-must-match-filename-map
270 " " 'minibuffer-complete-word)
263 271
264 ** The completion commands TAB, SPC and ? in the minibuffer apply only 272 ** The completion commands TAB, SPC and ? in the minibuffer apply only
265 to the text before point. If there is text in the buffer after point, 273 to the text before point. If there is text in the buffer after point,
266 it remains unchanged. 274 it remains unchanged.
267 275