help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: turn on flyspell mode permanently in .emacs


From: Johan Bockgård
Subject: Re: turn on flyspell mode permanently in .emacs
Date: Wed, 23 Aug 2006 14:48:06 +0200
User-agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.0.50 (gnu/linux)

kevmitch@gmail.com writes:

> So apparently, I'm doing something extremely stupid. Flyspell works
> great if I type "M-x flyspell-mode RET", but that's not good enough.
> I want it to be on all the time in every major mode automatically
> unless I explicitly disable it.

(defun my-turn-on-flyspell () (flyspell-mode 1))

(easy-mmode-define-global-mode
 global-flyspell-mode flyspell-mode my-turn-on-flyspell)

(global-flyspell-mode 1)

-- 
Johan Bockgård


reply via email to

[Prev in Thread] Current Thread [Next in Thread]