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.
保存されていない変更を5秒ごとに自動的に保存するようにemacsを構成するにはどうすればよいですか? ~で生成された一時ファイルではなく、バッファを保存したい
〜/.emacsファイルで以下の変更を行います。
(require 'auto-save-buffers) (run-with-idle-timer 5 t 'auto-save-buffers)
auto-save-timeout の値を変更すると、自動保存までのアイドル時間の秒数に影響します。
(setq auto-save-timeout 5) を使用すると問題が解決する場合があります