尽管浏览了 aspell 文档,但我无法让它跳过引用的文本,就像电子邮件模式所期望的那样。我的 .emacs.d 文件中有以下内容:
(setq ispell-program-name "aspell")
(add-hook 'mail-mode-hook (lambda ()
(setq ispell-extra-args '("--mode=email"))))
然而,Aspell 会继续检查引用的消息的拼写,即使C-h v ispell-extra-args
返回Its value is ("--mode=email")
。我还应该指出,从命令行执行 aspell 不会忽略该--mode=email
选项,因此 aspell 本身似乎没有任何问题。