当我运行 emacs 时打开自动填充模式作为次要模式
当我运行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不带参数的 auto-fill-mode 会切换模式。尝试
在你的钩子中使用?
auto-fill-mode without an argument toggles the mode. Try using
in your hook instead?