Variable: sc-minibuffer-local-completion-map

sc-minibuffer-local-completion-map is a variable defined in supercite.el.gz.

Value

<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
<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-t            sc-toggle-fn
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
SPC            self-insert-command
TAB            minibuffer-complete
TAB            self-insert-command

Documentation

Keymap for minibuffer confirmation of attribution strings.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/supercite.el.gz
(defvar sc-minibuffer-local-completion-map
  (let ((map (copy-keymap minibuffer-local-completion-map)))
    (define-key map "\C-t" #'sc-toggle-fn)
    (define-key map " "    #'self-insert-command)
    map)
  "Keymap for minibuffer confirmation of attribution strings.")