Variable: checkdoc-minor-mode-map

checkdoc-minor-mode-map is a variable defined in checkdoc.el.gz.

Value

C-M-x      checkdoc-eval-defun
C-c ? B    checkdoc-ispell-current-buffer
C-c ? C    checkdoc-ispell-comments
C-c ? D    checkdoc-ispell
C-c ? M    checkdoc-ispell-message-text
C-c ? S    checkdoc-ispell-start
C-c ? SPC  checkdoc-rogue-spaces
C-c ? X    checkdoc-ispell-defun
C-c ? `    checkdoc-continue
C-c ? b    checkdoc-current-buffer
C-c ? c    checkdoc-comments
C-c ? d    checkdoc
C-c ? e    checkdoc-eval-current-buffer
C-c ? m    checkdoc-message-text
C-c ? s    checkdoc-start
C-c ? x    checkdoc-defun
C-c ? ~    checkdoc-ispell-continue
C-x `      checkdoc-continue

Documentation

Keymap used to override evaluation key-bindings for documentation checking.

Probably introduced at or before Emacs version 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/checkdoc.el.gz
;;; Minor Mode specification
;;

(defvar-keymap checkdoc-minor-mode-map
  :doc "Keymap used to override evaluation key-bindings for documentation checking."
  ;; Override some bindings
  "C-M-x"     #'checkdoc-eval-defun
  "C-x `"     #'checkdoc-continue
  "<menu-bar> <emacs-lisp> <eval-buffer>"  #'checkdoc-eval-current-buffer

  ;; Add some new bindings under C-c ?
  "C-c ? x"   #'checkdoc-defun
  "C-c ? X"   #'checkdoc-ispell-defun
  "C-c ? `"   #'checkdoc-continue
  "C-c ? ~"   #'checkdoc-ispell-continue
  "C-c ? s"   #'checkdoc-start
  "C-c ? S"   #'checkdoc-ispell-start
  "C-c ? d"   #'checkdoc
  "C-c ? D"   #'checkdoc-ispell
  "C-c ? b"   #'checkdoc-current-buffer
  "C-c ? B"   #'checkdoc-ispell-current-buffer
  "C-c ? e"   #'checkdoc-eval-current-buffer
  "C-c ? m"   #'checkdoc-message-text
  "C-c ? M"   #'checkdoc-ispell-message-text
  "C-c ? c"   #'checkdoc-comments
  "C-c ? C"   #'checkdoc-ispell-comments
  "C-c ? SPC" #'checkdoc-rogue-spaces)