*/filepath files in current directory which satisfy filepath
**/filepath files in current directory or below which satisfy the
file pattern
*//pattern files in the current directory which contain the
pattern (vimgrep is used)
**//pattern files in the current directory or below which contain
the pattern (vimgrep is used)
2条答案
按热度按时间2wnc66cl1#
Netrw * 确实 * 有“那个特性”;参见:help netrw-star.您可以使用以下模式之一执行例如
:Explore */filepath
或更常见的操作:使用
:Pexplore
和:Nexplore
转到上一个/下一个匹配文件(使用@:
重复所选命令);按<cr>
进入文件。5jdjgkvh2#
Netrw没有这个功能。
您可以使用内置的
:vimgrep
:或
:grep
,默认情况下使用外部grep
,或通过grepprg
选项使用任何替代程序(如ack
或ag
):参见
:help :grep
、:help :vimgrep
和:help :cwindow
。