当我运行 emacs 时打开自动填充模式作为次要模式

发布于 2024-09-17 22:20:39 字数 292 浏览 5 评论 0原文

当我运行 emacs/org-mode 时,我有以下代码将自动填充模式设置为次要模式。

(defun my-org-mode-hook()
  (progn
    (turn-on-flyspell)
    (auto-fill-mode)))
(add-hook 'org-mode-hook 'my-org-mode-hook)

但是,当我打开 org 文件时,我只看到 (Org Fly Spc):flyspell 模式已打开,但没有看到自动填充模式未打开。

这有什么问题吗?

I have the following code to have auto-fill mode as minor mode when I run emacs/org-mode.

(defun my-org-mode-hook()
  (progn
    (turn-on-flyspell)
    (auto-fill-mode)))
(add-hook 'org-mode-hook 'my-org-mode-hook)

But, when I open the org file, I see only (Org Fly Spc): flyspell mode is on, but not the auto-fill mode is not on.

What's wrong with this?

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

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

发布评论

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

评论(1

抱猫软卧 2024-09-24 22:20:39

不带参数的 auto-fill-mode 会切换模式。尝试

(auto-fill-mode 1)

在你的钩子中使用?

auto-fill-mode without an argument toggles the mode. Try using

(auto-fill-mode 1)

in your hook instead?

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