There is a find command. If you add ** to your path, you can search recursively.
:set path
will show you your current path, add ** by doing something like
:set path=.,/usr/include,,**
bit before ** I copied from the start :set path
then you can simply enter
:find myfile.txt
and it opens in a magical way!
If you add the set command to your .vimrc, it will be sure that you can do a recursive search in the future. It doesn't seem to be looking for point directories (e.g. .ssh)
Stephen Paulger Aug 24 '10 at 9:02 2010-08-24 09:02
source share