Variable: flyspell-mode-map

flyspell-mode-map is a variable defined in flyspell.el.gz.

Value

C-,    flyspell-goto-next-error
C-.    flyspell-auto-correct-word(var)/flyspell-auto-correct-word(fun)
C-;    flyspell-auto-correct-previous-word
C-M-i  flyspell-auto-correct-word(var)/flyspell-auto-correct-word(fun)
C-c $  flyspell-correct-word-before-point

Documentation

Minor mode keymap for Flyspell mode--for the whole buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/flyspell.el.gz
(defcustom flyspell-use-meta-tab t
  "Non-nil means that flyspell uses M-TAB to correct word."
  :type 'boolean
  :initialize 'custom-initialize-default
  :set (lambda (sym val)
	 (define-key flyspell-mode-map "\M-\t"
	   (if (set sym val)
	       'flyspell-auto-correct-word))))