Variable: ido-common-completion-map

ido-common-completion-map is a variable defined in ido.el.gz.

Value

Large 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
<left>         ido-prev-match
<next>         next-history-element
<prior>        previous-history-element
<right>        ido-next-match
<up>           previous-line-or-history-element
?              ido-completion-help
C-,            ido-prev-match
C-.            ido-next-match
C-<tab>        file-cache-minibuffer-complete
C-@            ido-restrict-to-matches
C-SPC          ido-restrict-to-matches
C-a            ido-toggle-ignore
C-b            ido-magic-backward-char
C-c            ido-toggle-case
C-d            ido-magic-delete-char
C-e            ido-edit-input
C-f            ido-magic-forward-char
C-g            minibuffer-keyboard-quit
C-j            exit-minibuffer
C-j            ido-select-text
C-p            ido-toggle-prefix
C-r            ido-prev-match
C-s            ido-next-match
C-t            ido-toggle-regexp
C-x <down>     minibuffer-complete-defaults
C-x <up>       minibuffer-complete-history
C-z            ido-undo-merge-work-directory
M-<            minibuffer-beginning-of-buffer
M-SPC          ido-take-first-match
M-n            next-history-element
M-p            previous-history-element
M-r            previous-matching-history-element
M-s            next-matching-history-element
RET            exit-minibuffer
RET            ido-exit-minibuffer
SPC            ido-complete-space
TAB            ido-complete
TAB            self-insert-command

Documentation

Keymap for all Ido commands.

Source Code

;; Defined in /usr/src/emacs/lisp/ido.el.gz
;;;; Keymaps

(defvar-keymap ido-common-completion-map
  :doc "Keymap for all Ido commands."
  :parent minibuffer-local-map
  "C-a"     #'ido-toggle-ignore
  "C-c"     #'ido-toggle-case
  "C-e"     #'ido-edit-input
  "TAB"     #'ido-complete
  "SPC"     #'ido-complete-space
  "C-j"     #'ido-select-text
  "C-m"     #'ido-exit-minibuffer
  "C-p"     #'ido-toggle-prefix
  "C-r"     #'ido-prev-match
  "C-s"     #'ido-next-match
  "C-."     #'ido-next-match
  "C-,"     #'ido-prev-match
  "C-t"     #'ido-toggle-regexp
  "C-z"     #'ido-undo-merge-work-directory
  "C-SPC"   #'ido-restrict-to-matches
  "M-SPC"   #'ido-take-first-match
  "C-@"     #'ido-restrict-to-matches
  "<right>" #'ido-next-match
  "<left>"  #'ido-prev-match
  "?"       #'ido-completion-help
  "C-b"     #'ido-magic-backward-char
  "C-f"     #'ido-magic-forward-char
  "C-d"     #'ido-magic-delete-char)