Emacs:在更改日志模式下设置填充列
非常具体的问题,我希望不是太愚蠢。
(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您必须设置它(我只是确保这部分正确):
其次,您必须确保没有目录局部变量设置覆盖此设置。例如,在编辑 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):
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.