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

Re: I'm misspelling things in the TEXT: box because flyspell is disabled



>>>>> In [emacs-w3m : No.10242] jidanni@xxxxxxxxxxx wrote:

> Help, I'm constantly misspelling things in the
> TEXT:
> entry box because flyspell is disabled there, causing badly spelled
> words not to turn red, etc. What can I do? It's making me look bad to
> my peers.

(add-hook 'minibuffer-setup-hook
	  (lambda ()
	    (if (string-equal (minibuffer-prompt) "TEXT: ")
		(flyspell-mode 1))))

There may be a better solution though.