help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: Mix of completing-read and read-string


From: Drew Adams
Subject: RE: Mix of completing-read and read-string
Date: Tue, 17 Feb 2009 08:51:53 -0800

>>   (let ((minibuffer-local-completion-map
>>          minibuffer-local-completion-map))
>
> (copy-keymap minibuffer-local-completion-map) would be safer, eh?


This is probably the best approach; it is used in Emacs sources:

(let ((minibuffer-local-completion-map
       (let ((map  (make-sparse-keymap)))
         (set-keymap-parent map minibuffer-local-completion-map)
         (define-key map " " 'self-insert-command)
         (define-key map "?" 'self-insert-command)
         map)))
  (completing-read ...))





reply via email to

[Prev in Thread] Current Thread [Next in Thread]