Liraz Siri - Mon, 2011/05/23 - 09:06 -
Find filename patterns
Using Vim's built-in file explorer, it's possible to find specific filenames by pattern. For example:
# :Ex is short for :Explore
# search all subdirectories
:Ex */Makefile
:Ex */*.c
# search recursively
:Ex **/Makefile
:Ex **/*.c
:Ex **/*tpl*
This will take you straight to the first match. If you want the next match after that:
<Shift-DownArrow>
And back: