有人可以帮助我如何在所有项目文件(windows)中搜索文本
我尝试过:
vimgrep /user/ **.*
它只找到1个匹配项,但我确定我有2个文件带有“用户”文本。
如果我可以不用插件或其他程序就可以了。
谢谢
答案 0 :(得分:1)
**
是一个特殊的内置glob运算符。如:help starstar
所述,它只能在某些位置使用:
- '**' can only be at the end of the path or be followed by a path separator or by a number and a path separator.
因此,您需要在两者之间放置路径分隔符(/
);否则,Vim会将每个*
视为全局运算符,仅搜索当前目录:
:vimgrep /user/ **/.*