Discussion:
Getting spacebar filename completion back under Emacs V22
(too old to reply)
David Spain
2007-08-31 17:55:37 UTC
Permalink
In Emacs V22 it appears that spacebar filename completion has been replaced
by default with the tab key. Now granted that is more like the rest of the
industry, but I've gotten so used to Emacs working this way, plus I am
continually bouncing back and forth between Emacs V22 and Emacs V21 between
machines that I prefer the old style.

Is there anyway to get spacebar filename completion back on V22?
Colin Carr
2007-09-02 00:00:31 UTC
Permalink
maybe this could help?
(progn
(define-key minibuffer-local-completion-map " " 'minibuffer-complete-word)
(define-key minibuffer-local-filename-completion-map " " 'minibuffer-complete-word)
(define-key minibuffer-local-must-match-filename-map " " 'minibuffer-complete-word))
David Spain
2007-09-15 22:23:29 UTC
Permalink
Post by Colin Carr
maybe this could help?
(progn
(define-key minibuffer-local-completion-map " " 'minibuffer-complete-word)
(define-key minibuffer-local-filename-completion-map " " 'minibuffer-complete-word)
(define-key minibuffer-local-must-match-filename-map " " 'minibuffer-complete-word))
Yes! That works just fine. Thank you for that!

Dave

Loading...