Variable: crm-local-must-match-map
crm-local-must-match-map is a variable defined in crm.el.gz.
Value
Large value
crm-complete
crm-complete-and-exit
crm-complete-word
crm-completion-help
<XF86Back> previous-history-element
<XF86Forward> next-history-element
<down> next-line-or-history-element
<kp-4> tpu-search-forward-exit
<kp-5> tpu-search-backward-exit
<kp-enter> exit-minibuffer
<kp-enter> minibuffer-complete-and-exit
<next> next-history-element
<prior> previous-history-element
<prior> switch-to-completions
<up> previous-line-or-history-element
? minibuffer-completion-help
C-<tab> file-cache-minibuffer-complete
C-g minibuffer-keyboard-quit
C-j exit-minibuffer
C-j minibuffer-complete-and-exit
M-< minibuffer-beginning-of-buffer
M-g M-c switch-to-completions
M-n next-history-element
M-p previous-history-element
M-r previous-matching-history-element
M-s next-matching-history-element
M-v switch-to-completions
RET exit-minibuffer
RET minibuffer-complete-and-exit
SPC minibuffer-complete-word
TAB minibuffer-complete
TAB self-insert-command
Documentation
Local keymap for minibuffer multiple input with exact match completion.
Analog of minibuffer-local-must-match-map for crm.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/crm.el.gz
(defvar crm-local-must-match-map
(let ((map (make-sparse-keymap)))
;; We'd want to have multiple inheritance here.
(set-keymap-parent map minibuffer-local-must-match-map)
(define-key map [remap minibuffer-complete] #'crm-complete)
(define-key map [remap minibuffer-complete-word] #'crm-complete-word)
(define-key map [remap minibuffer-completion-help] #'crm-completion-help)
(define-key map [remap minibuffer-complete-and-exit]
#'crm-complete-and-exit)
map)
"Local keymap for minibuffer multiple input with exact match completion.
Analog of `minibuffer-local-must-match-map' for crm.")