17

Emacs が起動するとすぐに、すべてのファイルとすべてのメジャーモードで flyspell-mode が自動的に使用されるようにするにはどうすればよいですか?

また、XML タグをスペルミスとしてマークしない XML 辞書はありますか?

4

5 に答える 5

23

The answer from this question worked for me:

How to enable automatic spell check by default?

Furthermore, it appears to be more general compared to the other prior answers. Add the following lines to your .emacs or init.el.

(add-hook 'text-mode-hook 'flyspell-mode)
(add-hook 'prog-mode-hook 'flyspell-prog-mode)
于 2013-11-19T17:41:30.540 に答える