]> git.eshelyaron.com Git - emacs.git/commitdiff
(text-mode-map): Bind ispell-complete-word to M-TAB.
authorRichard M. Stallman <rms@gnu.org>
Tue, 26 Oct 1993 20:02:21 +0000 (20:02 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 26 Oct 1993 20:02:21 +0000 (20:02 +0000)
lisp/textmodes/text-mode.el

index c637b100790b701f44c00230bc13c3e969579bde..496270253bfe4ce14772934e9dda89f90d07026b 100644 (file)
@@ -50,6 +50,7 @@ inherit all the commands defined in this map.")
 (if text-mode-map
     ()
   (setq text-mode-map (make-sparse-keymap))
+  (define-key text-mode-map "\e\t" 'ispell-complete-word)
   (define-key text-mode-map "\t" 'tab-to-tab-stop)
   (define-key text-mode-map "\es" 'center-line)
   (define-key text-mode-map "\eS" 'center-paragraph))