在 Emacs 中编辑 crontab

Jiacai Liu

发布: 2023-01-29   上次更新: 2023-01-29   标签: tips crontab

文章目录

一般来说,编辑 crontab 时可以用 crontab -e ,它会读取 EDITOR 环境变量来决定需要打开的编辑器,比如:

1
EDITOR=emacsclient crontab -e

这时会用 emacsclient 来编辑 crontab 内容,只是需要注意一点,编辑完成后,需要用 C-x #(server-edit) 来退出。

如果使用 with-editor 的话,可以进一步完善编辑 crontab 的体验。

首先定义下面的函数:

1
2
3
4
5
(defun my/edit-crontab ()
  (interactive)
  (let ((buf (get-buffer-create "*crontab*")))
    (with-editor-async-shell-command "crontab -e"
                                     buf buf)))

同时在 crontab 文件头添加以下内容,让其打开时,默认开启 with-editor-mode

1
# -*- mode: with-editor -*-

这样就能够和使用 magit 编辑 commit message 一样来编辑 crontab:

还有一点比较烦, async-shell-command 会默认打开一个 buffer,但是这个 buffer 又没什么用,可以用下面的方法将其隐藏掉:

1
2
(setq display-buffer-alist
      '(("\\*crontab\\*" .  (display-buffer-no-window . nil))))

最后,可以添加 crontabrecentf-exclude 变量中,这样编辑 crontab 的临时文件就不会进入 recentf 列表了。

参考



收听方式

反馈