emacs-devel
[Top][All Lists]
Advanced

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

completion-list-mode-map


From: Christoph Scholtes
Subject: completion-list-mode-map
Date: Wed, 16 Mar 2011 16:46:10 -0600
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (windows-nt)

Is there a specific reason why `completion-list-mode-map' does not have
the parent map `special-mode-map'?

It seems a little inconsistent that other command like `h' or `?' are
not available in a completion-list buffer and `z' and `q' are redefined
in `completion-list-mode-map'.

Also, I changed the definition of `completion-list-mode-map' as follows:

(defvar completion-list-mode-map
  (let ((map (make-sparse-keymap)))
    (set-keymap-parent map special-mode-map)
    (define-key map [mouse-2] 'mouse-choose-completion)
[...]

and reloaded, even byte-recompiled simple.el, and ultimately restarted
Emacs but for some reason Emacs would still show the old version of the
map with `C-h v completion-list-mode-map'. Any idea why? Do other files
have to be regenerated to update the map?

Regards,
Christoph



reply via email to

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