[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: I'm misspelling things in the TEXT: box because flyspell is disabled
- From: Katsumi Yamaoka <yamaoka@xxxxxxx>
- Date: Wed, 18 Jun 2008 19:32:46 +0900
- X-ml-name: emacs-w3m
- X-mail-count: 10243
- References: <8763s78m09.fsf@xxxxxxxxxxx>
>>>>> 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.