Variable: text-mode-map

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

Value

C-M-i  ispell-complete-word

Documentation

Keymap for text-mode.

Many other modes, such as mail-mode, outline-mode and indented-text-mode, inherit all the commands defined in this map.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/text-mode.el.gz
(defvar text-mode-map
  (let ((map (make-sparse-keymap)))
    (define-key map "\e\t" #'ispell-complete-word)
    map)
  "Keymap for `text-mode'.
Many other modes, such as `mail-mode', `outline-mode' and `indented-text-mode',
inherit all the commands defined in this map.")