Emacs:在更改日志模式下设置填充列

发布于 2024-10-23 19:22:16 字数 274 浏览 1 评论 0原文

非常具体的问题,我希望不是太愚蠢。

(setq-default fill-column 120) 将缓冲区填充的宽度设置为 120 列。否则,我的默认值是 74。

当将此命令放入我的 .emacs 文件中时,它适用于我使用的所有主要模式(C++、Perl 等)。但是,它似乎不会影响更改日志主要模式(change-log-mode-hook)。您知道如何为此模式设置 fill-column 吗?

Very specific question that I hope is not too dumb.

(setq-default fill-column 120) sets the width of the buffer fill to 120 columns. Default for me otherwise is 74.

This command, when put in my .emacs file, works for all major modes I use (C++, Perl, etc). However, it seems not to affect the Change Log major mode (change-log-mode-hook). Do you know how I can set the fill-column for this mode?

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

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

发布评论

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

评论(1

愛放△進行李 2024-10-30 19:22:16

首先,您必须设置它(我只是确保这部分正确):

(defun my-change-log-mode-hook ()
  (setq fill-column 120))

(add-hook 'change-log-mode-hook 'my-change-log-mode-hook)

其次,您必须确保没有目录局部变量设置覆盖此设置。例如,在编辑 Emacs 本身的源代码时,更改日志模式的 fill-column 将设置为 74,其他地方设置为 70,从而覆盖您在 µour 挂钩中指定的值。它们在名为 .dir-locals.el 的文件中定义,并且可以放置在包含已编辑文件的目录中或之上。

First, you have to set it (I'm just making sure you got this part right):

(defun my-change-log-mode-hook ()
  (setq fill-column 120))

(add-hook 'change-log-mode-hook 'my-change-log-mode-hook)

Secondly, you have to make sure that there is no directory local variables setting that overrides this. For example, when editing the source code of Emacs itself, fill-column will be set to 74 for change log mode and 70 elsewhere, overriding the value you specified in µour hook. These are defined in files named .dir-locals.el and can be place in or above the directory that contains the edited file.

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