In the Vim world plugins don't really have to be maintained.
I like both FuzzyFinder and Command-T, but right now I'm using the former; gets the job done quite nicely and occasionally I use modes other than the basic file search.
I started with FuzzyFinder, and although I've been using PeepOpen lately, I think I'll be going back to FuzzyFinder. It makes it easy to traverse the entire filesystem (which PeepOpen does not), and it makes directory structure apparent for situations where I don't remember the exact filename, but I don't want to mess with a full tree browser either.
What a coincidence: I wanted something like this and created a similar, albeit much simpler, plugin[1]. I've been trying to work around a bug (an event wasn't triggered when the completion menu is visible) for a long time and finally found a solution today when searching through GitHub. The project I found the solution in was FuzzyFinder. So I implemented a fix, but got curious about the plugin itself (I've used it before, but it was quite buggy back when). So I searched YouTube for some videos, and the one I watched was the one the OP made :)
did they fix the bugs where your keypresses could appear out of order? because seriously, I don't want to have to slow down my typing to get software to work.
16 comments
[ 0.24 ms ] story [ 53.0 ms ] threadI like both FuzzyFinder and Command-T, but right now I'm using the former; gets the job done quite nicely and occasionally I use modes other than the basic file search.
"re-map <leader> from \ to , (comma) to avoid a reach
let mapleader = ","
" map comma-f to open fuzzy finder in the working dir,
" ready for a wildcard filename search
map <leader>f :FufFileWithFullCwd /<CR>
nnoremap <C-t> :<C-u>FufFile /<CR> " Makes the search recursive
[1] https://github.com/strange/pyxis-vim
,f to choose a file
,b to choose a buffer
,g to search for a word/pattern in active buffers
In each case the results are filtered incrementally, more or less like in all the other similar vim plugins and the original in TextMate.
I'm unable to recursively search for a file in my current project dir. Even when I do funny things like
it takes forever to scan the project dir and then doesn't come up with the file I want.As much as I want this to be an alternative to Command-T, it isn't :(