One of the best Vim plugins that I've used. Allows you to easily search for files by name, like Cmd-T in TextMate and Find File in Project in UltraEdit
See this web page for an overview:
Just copy the fuzzyfinder.vim into your ~/.vim/plugins directory
I'm just getting into it, but I have the following mapping in my .vimrc that will let me search recursively through my ~/src/MYPROJECT directory.
The author of the plugin has a somewhat confusing feature where you can prefix your search text with some prefix (like “MYPROJECT”) below. This prefix will tell Fuzzy Finder that you only want to search in ~/src/MYPROJECT, and that you want it to search recursively (hence the two asterisks after MYPROJECT/**).
let g:FuzzyFinderOptions.Base.abbrev_map = {
\ "^MYPROJECT" : [
\ "~/src/MYPROJECT/**/"
\ ],
\ }
nmap <S-F2> :FuzzyFinderFile MYPROJECT<CR>
| Page | Description | Tags |
|---|---|---|
| Fuzzy Finder | One of the best Vim plugins that I've used. Allows you to easily search for files by name, like Cmd-T in TextMate and Find File in Project in UltraEdit * <… | vim, plugins, favorites |
| Fuzzy finder textmate | An excellent Vim plugin that improves on FuzzyFinder plugin. <http://github.com/jamis/fuzzyfinder_textmate/tree/master> I wish that foos_controller.rb would b… | vim, plugins |
| IdeaVIM | Allows you to use Vim-interface from within IntelliJ IDEA. * <http://ideavim.sourceforge.net/> You get the code formatting features of Idea, as well as som… | idea, vim, plugins |
| IdeaVIM Readme | I copied the README file from version .11.6 for IDEA 7.x. See also the help file that's installed with the plugin. After you install the plugin, go to the IDE… | vim, idea, plugins |
| Lookupfile | Lookupfile is a Vim plugin that searches for files as you type criteria. For example, if you type “b”, then lookupfile will show all files that start with … | vim, plugins |
| Vim Plugins | Plugins extend the functionality of Vim. Plugins for any software tool are often tricky to install/use, sometimes have bugs, etc. However, if a plugin is wide… | vim, rails, ide, plugins, vim, editors, ide, plugins |