默认情况下如何在组织模式下启用 flyspell

Bri*_*n Z 6 emacs org-mode flyspell

在 emacs 中,我想flyspell-modeorg-mode.

根据我在 emacs 文档中看到的不同示例,我尝试.emacs一次向我的文件中添加不同的行,例如:

(add-hook 'org-mode-hook 'flyspell-mode)
Run Code Online (Sandbox Code Playgroud)

(dolist (hook '(text-mode-hook))
      (add-hook hook (lambda () (flyspell-mode 1))))
Run Code Online (Sandbox Code Playgroud)

这些都不会奏效。请让我知道避免M-x flyspell-mode每次打开组织模式文件时都执行的正确方法。

小智 10

(add-hook 'org-mode-hook 'turn-on-flyspell)
Run Code Online (Sandbox Code Playgroud)