I try to use vim's internal grep with '**'
wildcard as in the following command:
grep "test" **\*.txt
vim gives the following error:
FINDSTR: Cannot open **\*.txt
When I remove the '**'
wildcard, the command works properly:
grep "test" *.txt
I changed the backslashes to forward slashes, but it didn't help neither:
grep "test" **\*.txt
This gives the above error again.
What might be the reason?
Note: I use GVim 7.2 on Microsoft Windows XP.