Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我激活 flyspell 时M-x flyspell-mode,它会在我写错字时标记它们,但它不会标记缓冲区中我在当前会话期间未写的任何拼写错误的单词。我怎样才能使 flyspell 也标记在当前会话期间未写的拼写错误的单词?
M-x flyspell-mode
好吧,您可以手动执行以下操作:
M-x flyspell-buffer
如果您希望每次打开时都发生这种情况flyspell-mode,可以将其添加到您的 .emacs 中:
flyspell-mode
(add-hook 'flyspell-mode-hook 'flyspell-buffer)