Flyspell 无法在 emacs 中加载 LaTeX 文件
在此网页之后,我编辑了 ~/.emacs 文件并添加了该行:
(add-hook 'LaTeX-mode-hook 'flyspell-mode)
但是,flyspell 不以 LaTeX 文件开头。为什么会这样呢?
Following this web page, I have edited my ~/.emacs file and added the line:
(add-hook 'LaTeX-mode-hook 'flyspell-mode)
However, flyspell doesn't start with LaTeX files. Why is that so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我无法完成这项工作:
但后来我发现了这个:
(add-hook 'LaTeX-mode-hook 'turn-on-flyspell)
- 它正在工作。
I could not make this work:
But then I found this:
(add-hook 'LaTeX-mode-hook 'turn-on-flyspell)
-and it is working.
Emacs 区分大小写;该钩子应该写成
latex-mode-hook
。试试这个:Emacs is case-sensitive; the hook should be written as
latex-mode-hook
. Try this: