Emacs:默认情况下无法打开自动恢复模式

Emacs:默认情况下无法打开自动恢复模式

emacs 中有一个称为“auto-revert-mode”的次要模式,它每 5 秒自动恢复文件缓冲区。

在我的 .emacs 文件中只有该行(auto-revert-mode 1)而没有其他内容,但每当我启动 emacs 会话时我仍然必须手动打开它。

这是怎么回事?为什么我无法在启动时启用自动恢复模式?

答案1

来自该函数的文档:

This is a minor mode that affects only the current buffer.
Use `global-auto-revert-mode' to automatically revert all buffers.
Use `auto-revert-tail-mode' if you know that the file will only grow
without being changed in the part that is already in the buffer.

因此你应该global-auto-revert-mode根据自己的目的来使用它。

相关内容