Search notes:

vim - recursively find a file and open it

:set path+=**
:find foo.txt
Tab completion works with :find. So, a file can be found with
:find f*.txt
and then (repeatedly) pressing the tab key.

See also

findfile('foo.txt', '**'), finddir(…)

Index