Question

I can't find out how to search in Vim in all directories with:

  • grep
  • ack
  • findstring
  • vimgrep

p.e. search "search-item" in all .txt files in c:\ and d:\ (including sub directories)

Can anyone help me?

Was it helpful?

Solution

Following works for me

:vimgrep /<search>/ {c:,d:}/**/*.txt

OTHER TIPS

You can use grep as usually

:grep -R 'search-item' path1 path2

For more information see:

:h grep
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top