How to periodically run a task within emacs?

无人久伴 提交于 2019-12-18 11:20:32

问题


Is there a way to periodically run an elisp function in a long-running emacs, similar to cron, but within the emacs process?

For example I want to "automatically run (recentf-save-list) every half hour" because it otherwise only runs on exit, which sucks when emacs occasionally crashes. (There are other examples as well so looking for a general solution rather than one in particular for recentf).


回答1:


Check out run-with-timer.

(run-with-timer 0 (* 30 60) 'recentf-save-list)



回答2:


You might also find midnight mode useful. One can arbitrarily define 'midnight' and then add hooks as desired.



来源:https://stackoverflow.com/questions/3841459/how-to-periodically-run-a-task-within-emacs

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!