Variable: custom-mode-map

custom-mode-map is a variable defined in cus-edit.el.gz.

Value

<backtab>       widget-backward
<down-mouse-1>  widget-button-click
<down-mouse-2>  widget-button-click
C-M-i           widget-backward
C-c C-c         Custom-set
C-x C-s         Custom-save
DEL             scroll-down-command
RET             Custom-newline
RET             widget-button-press
S-<tab>         widget-backward
S-SPC           scroll-down-command
SPC             scroll-up-command
SPC..~          Custom-no-edit
TAB             widget-forward
n               widget-forward
p               widget-backward
q               Custom-buffer-done
u               Custom-goto-parent

Documentation

Keymap for Custom-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/cus-edit.el.gz
;;; Custom mode keymaps

(defvar custom-mode-map
  (let ((map (make-keymap)))
    (set-keymap-parent map widget-keymap)
    (define-key map [remap self-insert-command] 'Custom-no-edit)
    (define-key map "\^m" 'Custom-newline)
    (define-key map " " 'scroll-up-command)
    (define-key map [?\S-\ ] 'scroll-down-command)
    (define-key map "\177" 'scroll-down-command)
    (define-key map "\C-c\C-c" 'Custom-set)
    (define-key map "\C-x\C-s" 'Custom-save)
    (define-key map "q" 'Custom-buffer-done)
    (define-key map "u" 'Custom-goto-parent)
    (define-key map "n" 'widget-forward)
    (define-key map "p" 'widget-backward)
    map)
  "Keymap for `Custom-mode'.")