Vim 不区分大小写的文件名补全
我最近注意到如何配置 bash 来完成不区分大小写的文件名完成(在 /etc/inputrc 中,添加:设置完成忽略大小写),现在我如何在 vim 中获得它?
I recently noticed how to configure bash to do case-insensitive filename completion (in /etc/inputrc, add: set completion-ignore-case on), now how do I get this in vim?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
我相信这是一个相当新的功能,我让它在最新的 vim 版本(7.3.107)中工作,
请参阅 此处。
Try
I believe it is a pretty new feature, I have it working in the latest vim build(7.3.107)
see here.
好像还不支持。它出现在 vim 的待办事项列表中
:help todo
搜索CASE_INSENSITIVE_FILENAME
(优先级为“下一个版本”):无论如何,如果你不想从源代码重建 vim 那么你可以尝试这个补丁:
http://osdir.com/ml/vim_dev/2009-09/msg00006。 html
(还没有尝试过,所以我不能保证它会解决你的问题。抱歉)
Looks like it's not supported yet. It appears in vim's todo list
:help todo
search forCASE_INSENSITIVE_FILENAME
(with priority "next release"):Anyway, if you don't care to rebuild vim from source then you can try this patch:
http://osdir.com/ml/vim_dev/2009-09/msg00006.html
(Haven't tried it, so I cannot guarantee that it will solve your problem. Sorry)