tags:

views:

49

answers:

1

I've gotten used to , when i press

M-x

that whenever i type a space, it gives me a hyphen and yet I'd like to use icicles, so is there a way to change it so that whenever i type space, it gives me a hyphen?

A: 
(define-key minibuffer-local-completion-map   
 " " "-") 
(define-key minibuffer-local-must-match-map   
 " " "-") 

source: http://groups.google.com/group/gnu.emacs.help/browse_thread/thread/422e4297b9e4842d

Nathaniel Saxe