Vim:打开Grep给出的线上的匹配文件?

前端之家收集整理的这篇文章主要介绍了Vim:打开Grep给出的线上的匹配文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在命令行上自动获得在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提供了这些用于搜索文件的命令:
:grep
:lgrep
:vimgrep
:lvimgrep

这些文章提供了有关其使用的更多信息.

原文链接:https://www.f2er.com/bash/384052.html

猜你在找的Bash相关文章