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.
我们如何将 emacs 配置为每 5 秒自动保存未保存的更改?我想要保存缓冲区而不是生成的临时文件 ~
在 ~/.emacs 文件中进行以下更改。
(require 'auto-save-buffers) (run-with-idle-timer 5 t 'auto-save-buffers)
更改自动保存超时的值会影响自动保存之前的空闲时间秒数。
使用 (setq auto-save-timeout 5) 可以解决您的问题