如何使用 emacs 启动特定模式?

发布于 2024-09-16 08:53:28 字数 141 浏览 7 评论 0原文

用户使用“Mx auto-revert-mode”来启动自动恢复模式。如何设置 .emacs 文件在 emacs 启动时执行相同的操作?

当主模式启动时,如何启动特定模式?例如,当我想在LaTeX模式启动时启动自动恢复模式时,如何设置.emacs文件?

Users use 'M-x auto-revert-mode' for starting auto revert mode. How can I set the .emacs file to do the same thing when emacs starts?

How to start a specific mode, when a major mode starts? For example, how to set the .emacs file when I want to start the auto revert mode when LaTeX mode starts?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

属性 2024-09-23 08:53:28

如果您希望对所有文件启用自动恢复模式,请添加:

(global-auto-revert-mode 1)

如果您希望对特定模式的文件启用自动恢复模式,请尝试:

(add-hook 'latex-mode-hook '(lambda () (auto-revert-mode 1)))

并将模式名称替换为 latex

If you want auto-revert-mode on for all files, add:

(global-auto-revert-mode 1)

If you want it for files for specific modes, try:

(add-hook 'latex-mode-hook '(lambda () (auto-revert-mode 1)))

and substitute the mode name for latex.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文