vim 中的 FuzzyFinder - 防止 Windows 中的重复文件名
我正在使用 Vim 的 FuzzyFinder 插件(特别是 Windows 上的 gvim)。它工作得很好,除了一个问题:它有许多重复的文件名。
据我所知,发生这种情况是因为它对文件名区分大小写,而 Windows 则不然。因此,当我从某个将目录列为“C:\”的地方打开一个文件,而在另一个将其列为“c:\”的地方打开一个文件时,我会得到两个不同的文件名。
有谁知道我可以解决这个问题的方法吗?
谢谢!
I'm using the FuzzyFinder plugin for vim (specifically with gvim on Windows). It works great, except for one problem: it has many duplicate filenames.
As far as I can tell, this happens because it's case sensitive to filenames, whereas Windows is not. So when I open a file from someplace that lists the directory as "C:\", and another place that lists it as "c:\", I get two different filenames.
Does anyone know of a way that I can fix this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不应该这样问:首先搜索 fuzzyfinder 文档,然后创建一个新问题 如果文档中的内容不起作用,请让作者修复。您是否尝试过
g:fuf_ignoreCase
选项?You should not ask this on SO: first search fuzzyfinder documenation, second create a new issue and let the author fix if nothing from the documentation worked. Have you tried
g:fuf_ignoreCase
option?