# vim-yaff **Repository Path**: mirrors_eapache/vim-yaff ## Basic Information - **Project Name**: vim-yaff - **Description**: Yet Another Fuzzy Finder for Vim - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-01-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README vim-yaff ======== Yet Another Fuzzy Finder for Vim YAFF is yet another fuzzy-file finder plugin for Vim. Previous entries in this category include: - [Ctrl-P](https://github.com/kien/ctrlp.vim) - [Unite](https://github.com/Shougo/unite.vim) - [Command-T](https://github.com/wincent/Command-T) 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 ------- Install with the [pathogen plugin manager](https://github.com/tpope/vim-pathogen): ```sh cd ~/.vim/bundle && \ git clone git@github.com:eapache/vim-yaff.git ``` It probably installs with other plugin managers (like Vundle) as well, I just haven't tried.