我将显式文件设置为通过 UI 创建的自定义。它被命名为custom.el
。目前,如果不存在,我使用以下代码片段创建此文件。
(defconst custom-file (expand-file-name "custom.el" user-emacs-directory))
(unless (file-exists-p custom-file)
(shell-command (concat "touch " custom-file)))
有一个丑陋的 shell 命令touch
,任何其他 elisp 函数可以做到这一点?