我正在尝试设置 Emacs 的预测模式并将其与 LaTeX 模式一起使用。我遇到了一个问题:一旦加载 LaTeX 模式,它就会加载“自动覆盖”,并且需要等待两分钟才能开始工作,这非常烦人。我相信这个“自动覆盖”用于根据我在 LaTeX 文档中的位置在词典之间切换。
这是我的 .emacs 中与预测模式有关的部分:
(require 'predictive)
(autoload 'predictive-mode "predictive" "predictive" t)
(set-default 'predictive-auto-add-to-dict t)
(setq predictive-main-dict 'dict-english
predictive-auto-learn t
predictive-add-to-dict-ask nil
predictive-use-auto-learn-cache nil
predictive-which-dict t)
(add-hook 'latex-mode-hook 'predictive-mode)
(setq completion-use-hotkeys nil)
(setq predictive-ignore-initial-caps t)
(custom-set-variables
'(auto-completion-syntax-alist (quote (accept . word))))
你有解决方案吗?