Fastest Fuzzy Finder for Vim / Neovim


When I started to use Vim I needed a fast way to go between files by hitting Ctrl+P and typing the file name just like in Sublime Text, Text Mate or any other text editor. Then I found ctrlp plugin for vim which was ok. The main problem I had with ctrlp was speed. At my full time job I am working with a code base that contains 20,000+ files and it was very frustrating every-time I had to go to a file.  Even the caching did not help much. And some of the time the search result it returned was not matching the file (most probably due to very similar file naming).

After some search for its alternative I came across  Command-T and it was built for speed (much faster than CtrlP). And the search result was much accurate. I was happy with it for a long time but I had one problem with it as it would not work with  neovim. But I really wanted to switch to neovim and using CtrlP was out of question for me.

Command-T

Then I found fzf which would work in neovim. It was amazingly faster than Command-T as well. I heard of this quiet a while ago but did not tried it. This was really a holy experience for me haha, it blew away all fuzzy finder. In Github  page it says “fzf is a general-purpose command-line fuzzy finder.” so it can be used from command-line as well. Actually this plugin is rewritten in Golang which might be the reason of its speed.

fzf