Vim:使用自动完成功能搜索文件
我发现这个插件:
http://vim.wikia.com/wiki/Find_files_in_subdirectories
真的很使用通配符查找文件很有用。例如,我可以执行它
:Find edit*.php
,它将找到所有以单词 edit 开头的 PHP 文件。我真正想要的是以某种方式索引我的工作目录中的所有文件,以便我可以按下该键,Vim 将根据该目录中的现有文件自动为我完成名称。知道这是否可能吗?
实际上,这个问题的第二部分是你知道这在 Linux 终端中是否可行吗?能够为复杂项目中的所有文件建立索引,以便您可以快速访问它们,可以节省大量时间。
问候,
拉菲德
I found this plugin:
http://vim.wikia.com/wiki/Find_files_in_subdirectories
to be really useful to find a file(s) using a wild card. For example, I can execute
:Find edit*.php
and it will find all the PHP files starting with the word edit. What I would really like to have is to somehow index all the files in my working directory so that I can press the key and Vim will auto complete the name for me according to the existing files in that directory. Any idea if this is possible?
Actually, the second part of this question is do you know whether this is possible in Linux terminal? It saves much time to be able to index all the files in your complicated project so that you can go to them quickly.
Regards,
Rafid
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
find
命令。find
command.