Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我这样做时,:Explore //** searchingforthis我收到此错误:
:Explore //** searchingforthis
E132: Function call depth is higher than 'maxfuncdepth'
有谁知道为什么?顺便说一句,//**在 netrw 目录中执行 grep 并让您逐步浏览找到该模式的文件。
//**
我正在使用ag而不是grep.
ag
grep
Netrw 对于您似乎正在尝试做的事情来说并不是一个很好的工具。
如果您尝试递归查找当前目录中包含的所有文件foo,请尝试:grep或:vimgrep:
foo
:grep
:vimgrep
:grep foo **/* | cw :vim bar **/* | cw