Yet Another Fuzzy Finder for Vim
YAFF is yet another fuzzy-file finder plugin for Vim. Previous entries in this category include:
What differentiates YAFF is that it's super-simple and thus super-fast. It's pure vimscript, it doesn't have its own matching logic or complex caching or anything like that. It just creates a split, fills it with the list of files in the current directory, and drops you into vim's search mode automatically.
This is mapped to ctrl-P by default - try and guess which one of the above list I was using previously ;)
Install with the pathogen plugin manager:
cd ~/.vim/bundle && \
git clone git@github.com:eapache/vim-yaff.gitIt probably installs with other plugin managers (like Vundle) as well, I just haven't tried.