.emacs 中区分大小写的 setq 没有效果
我的 .emacs 文件中有很多自定义内容:字体、颜色、窗口大小、键绑定等。所有这些都有效。
然后在最后,我刚刚添加了一个:(setq case-fold-search nil)
。这是一个变量,当设置为 nil 时,应该使搜索在所有 emacs 模式下区分大小写。这不适合我。
在单个缓冲区中将 case-fold-search
设置为 nil
有效,但是当我在 .emacs
中设置它时,它不起作用。 .emacs
中的 setq 声明有时可能不起作用,是否有原因?我应该如何尝试调试该问题?
I have a lot of custom stuff in my .emacs file: fonts, colors, window sizing, key bindings, etc. All of it works.
Then at the end, I just added a: (setq case-fold-search nil)
. It's a variable that when set to nil
is supposed to make search case-sensitive in all emacs modes. It doesn't for me.
Setting case-fold-search
to nil
in an individual buffer works, but when I set it in .emacs
, it doesn't work. Is there a reason why a setq declaration in a .emacs
may not work sometimes? How should I try to debug the issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是缓冲区局部变量的正常行为。
setq-default
可用于为它们建立默认值。您可以通过使用 Ch v case-fold-search (或 Mx describe-variable)查看其文档来确定变量是缓冲区本地变量,在本例中报告(注意第四行):
That's normal behavior for buffer-local variables.
setq-default
can be used to establish a default value for them.You can determine that a variable is buffer local by checking out its documentation, using C-h v case-fold-search (or M-x describe-variable), which in this case reports (note 4th line):