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

See this web page for an overview:

Setup

Just copy the fuzzyfinder.vim into your ~/.vim/plugins directory

Usage

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>

Fuzzy Finder Textmate

See Also

Other Vim Plugins

PageDescriptionTags
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 * <… , ,
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… ,
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… , ,
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… , ,
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 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… , , , , , , ,
 
fuzzy_finder.txt · Last modified: 2008/10/27 12_29 by tookelso
 
Except where otherwise noted, content on this wiki is licensed under the following license:CC Attribution-Noncommercial-Share Alike 3.0 Unported
Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki