emacs 仅针对 org 模式自动保存
我正在为我的组织模式使用自动保存回原始文件,但我只希望它适用于此模式,而不是其他模式。这容易做到吗?
这是我的组织模式选项
;; 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
I'm using auto save back to the original file for my org-mode but I only want it to work for this mode and nothing else. Is that easy to do?
Here are my org-mode options
;; 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)))
Note: For my full config please refer to https://github.com/map7/simple_emacs
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该为您提供仅在组织模式下自动保存文件名的自定义。
注意:在
'org-mode-hook
中添加'auto-save-mode
将会关闭关闭默认情况下自动保存(除非您已全局关闭它)。This should provide you with the customization of the auto-save file name just in org-mode.
Note: Your addition of
'auto-save-mode
in the'org-mode-hook
would turn off auto save as it is on by default (unless you've turned it off globally).最简单的方法是添加自动保存挂钩。
如果您使用共享文件夹或基于云的文件夹来同步您的组织文件,您可能还对组织缓冲区的自动还原感兴趣,如下所示:
The simplest way is to add an auto-save-hook.
If you are using a shared folder or cloud based folder to sync your org files, you may also be interested in auto-revert for your org buffers as follows: