https://github.com/eapache/vim-yaff
Yet Another Fuzzy Finder for Vim
https://github.com/eapache/vim-yaff
Last synced: 3 months ago
JSON representation
Yet Another Fuzzy Finder for Vim
- Host: GitHub
- URL: https://github.com/eapache/vim-yaff
- Owner: eapache
- License: mit
- Created: 2014-08-05T22:27:16.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-02-07T18:03:26.000Z (over 10 years ago)
- Last Synced: 2025-01-24T12:26:34.142Z (5 months ago)
- Language: VimL
- Size: 164 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
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 [email protected]:eapache/vim-yaff.git
```It probably installs with other plugin managers (like Vundle) as well, I just
haven't tried.