.emacs 中区分大小写的 setq 没有效果

发布于 2024-10-23 18:32:52 字数 335 浏览 1 评论 0原文

我的 .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 技术交流群。

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

发布评论

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

评论(1

酒绊 2024-10-30 18:32:52

这是缓冲区局部变量的正常行为。 setq-default 可用于为它们建立默认值。

您可以通过使用 Ch v case-fold-search (或 Mx describe-variable)查看其文档来确定变量是缓冲区本地变量,在本例中报告(注意第四行)

case-fold-search is a variable defined in `buffer.c'.
Its value is t

  Automatically becomes buffer-local when set in any fashion.

Documentation:
*Non-nil if searches and matches should ignore case.

You can customize this 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):

case-fold-search is a variable defined in `buffer.c'.
Its value is t

  Automatically becomes buffer-local when set in any fashion.

Documentation:
*Non-nil if searches and matches should ignore case.

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