Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Emacs 中,默认情况下,增量搜索不区分大小写。但是,如果您键入任何大写字符作为搜索字符串的一部分,它就会变成区分大小写的搜索。所以问题是,您如何轻松地对全小写模式执行区分大小写的搜索。字符越少越容易记住越好。我很确定这是内置的,只是不记得该怎么做。
Emacs 的增量搜索(即isearch-forward)有很多修饰符来改变当前搜索的行为,你可以在C-s.
isearch-forward
C-s
来自isearch-forward的文档:
键入M-c以切换搜索是否区分大小写。
M-c
在您(setq case-fold-search nil)的 .emacs 或M-x set-variable case-fold-search nil.
(setq case-fold-search nil)
M-x set-variable case-fold-search nil