我正在使用自动保存回原始文件作为我的组织模式,但我只希望它适用于此模式而不是其他任何东西。那很容易吗?
以下是我的组织模式选项
;; Org-mode options
(add-hook 'org-mode-hook
'turn-on-visual-line-mode
'auto-save-mode)
(add-hook 'org-mode-hook '(lambda()
(setq auto-save-visited-file-name t)
(setq auto-save-interval 20)))
注意:有关我的完整配置,请参阅https://github.com/map7/simple_emacs
答案 0 :(得分:8)
这应该为您提供org-mode中自动保存文件名的自定义。
(add-hook 'org-mode-hook 'my-org-mode-autosave-settings)
(defun my-org-mode-autosave-settings ()
;; (auto-save-mode 1) ; this is unnecessary as it is on by default
(set (make-local-variable 'auto-save-visited-file-name) t)
(setq auto-save-interval 20))
注意:您在'auto-save-mode
中添加'org-mode-hook
会将关闭自动保存,因为默认情况下处于启用状态(除非您已经启用)在全球范围内关闭它。)