我想在命令行上自动获得在Vim中的结果位置.有这样的功能吗?
文件打开在Vim给出的线上由grep:
% grep --colour -n checkWordInFile * SearchToUser.java:170: public boolean checkWordInFile(String word,File file) { SearchToUser.java~:17: public boolean checkWordInFile(String word,File file) { SearchToUser.java~:41: if(checkWordInFile(word,f))
看看“
Grep search tools integration with Vim”和“
Find in files within Vim”.基本上vim提供了这些用于搜索文件的命令:
原文链接:https://www.f2er.com/bash/384052.html:grep :lgrep :vimgrep :lvimgrep
这些文章提供了有关其使用的更多信息.