在vim中,是否可以不区分大小写地打开指定名称的文件
在 vim 中,有 ** 通配符,可用于使用 :e
打开文件。通配符允许打开文件进行向下搜索。有没有办法调整 vim 使搜索不区分大小写?
In vim, there is the ** wild card that can be used for file opening using :e
for instance. The wildcard allows to open for downward search of a file. Is there a way to tweak vim so that the search is case insensitive?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如
Carpetsmoker
指出的那样::tabe /path/to/dir
浏览路径(使用.
如果已经在该目录中)
/filename\c
搜索文件ignorecase文件名
As
Carpetsmoker
point out::tabe /path/to/dir
to browse the path (use.
if already in that dir)/filename\c
to search you file ignorecaseFileName
有两个选项可以在搜索时控制大小写匹配:
ignorecase
和smartcase
。摘录自
:helpignorecase
另外,来自
:help *
因此,设置
ignorecase
(无论是否与smartcase
组合)都应该有效。您可能还想将它们组合在一个按键绑定中。例如:
There are a two options which control case matching while searching,
ignorecase
andsmartcase
.Excerpt from From
:help ignorecase
Additionally, from
:help *
So, setting
ignorecase
(with or without combining it withsmartcase
) should work.You may also want to combine them in a keybind. For example: