Questions tagged [fuzzyfinder]

FuzzyFinder is a plugin for VIM allowing quick file, buffer and command navigation.

FuzzyFinder is a plugin for Vim which lets you access files (recently used and otherwise), commands, help documents and lots of other goodies, using as few keystrokes as possible.

It does this using "fuzzy matching": If you have a file called "ImportantDoc", you can just type "Doc" and it would pop up, even though "Doc" is at the end of the filename rather than in the beginning. It has lots of other features, all fully described on the plugin page.

34 questions
3
votes
3 answers

fuzzyfinder: Error detected while processing function 19_onCommandPre

When typing an command, I get an error like this: :w Error detected while processing function 19_onCommandPre..fuf#mrucmd#onCommandPre..25_updateInfo..fuf#updateMruList: line 2: E121: Undefined variable: word line 5: E121: Undefined…
wodesuck
  • 1,061
  • 2
  • 8
  • 6
2
votes
3 answers

Vim - command - T

I have made the move from TextMate to VIM. I can not use macvim, policy at work does not allow me to install it. I have tried installing command-t to give me "go to file" functionality. However as I am using VIM with the osx terminal, when I…
RailsSon
  • 19,897
  • 31
  • 82
  • 105
2
votes
1 answer

Using FuzzyFinder in vim (+MiniBuffer), open file in current buffer

I'm using FuzzyFinder in vim together with MiniBufExplorer (with this setting in my .vimrc: g:miniBufExplorerMoreThanOne = 1). I'm using FuzzyFinder in coverage-file mode (where it works pretty much like command-t, from what I understand). The…
Edan Maor
  • 9,772
  • 17
  • 62
  • 92
2
votes
1 answer

Vim FuzzyFinder FufTag for current active buffer

I would like to jump to a tag (function) in the current active buffer with completion search like FuzzyFinder's functionality. The FufTag function from FuzzyFinder lists all the tags in the project and I only want the tags from the current active…
Jonas Wouters
  • 707
  • 1
  • 7
  • 22
2
votes
1 answer

Which line in vim colorscheme is coloring my FuzzyFinder popup?

I just installed FuzzyFinder for gvim, though for some reason it's using an ultra hot-pink background color that's burning my eyes, using my favorite desert colorscheme. I've looked through desert.vim but I can't find any line which is defining this…
Tim
  • 35,413
  • 11
  • 95
  • 121
1
vote
1 answer

Vim FuzzyFinder - how to add tags support for other languages

Specifically I want to use FufBufferTag in coffeescript files. I've added the following to my ~/.ctags --langdef=coffee --langmap=coffee:.coffee --regex-coffee=/^[ \t]*([A-Za-z_]+): (\([^)]*\))? *->(.*)/\1 \2/f,function/ (very basic coffeescript…
Tom Locke
  • 284
  • 2
  • 10
1
vote
1 answer

Vim Textmate fuzzyfinder showing abbreviated paths

I'm using the fuzzyfinder_textmate "plugin" on vim (macvim, actually). It works fine, except that when I search for a file, it gives me abbreviations for the paths For example, 1: a/v/b/index.html.haml 2: a/v/a/index.html.haml Is there a way to…
user141146
  • 3,285
  • 7
  • 38
  • 54
1
vote
1 answer

Vimperator is in the way of Github FuzzyFinder

I love using vimperator, it improves my browserflow by a ton however I recently discovered that whilst in a Github Repo, if you press t then you can commence a Github file fuzzyfinder. Herein lies the problem: I can't use it if I have vimperator on.…
Brian Zhang
  • 21
  • 1
  • 2
1
vote
2 answers

"Fuzzily" open a file in vim from the command line

I've been using the FuzzyFinder plugin for Vim for a couple weeks and I'm really enjoying it so far. The one thing I do find annoying is that all those fuzzy-finding benefits are only available after Vim is already open. Is there a way to fuzzy-find…
Jason Swett
  • 43,526
  • 67
  • 220
  • 351
1
vote
1 answer

Is there any sublimetext2 like autopreview available to FuzzyFinder or any other VIM file opening plugin?

In SublimeText when using the file opener command, file names that are hovered over are auto previewed in the background. Is there any such file opener / add-on available to VIM that implements this?
Inc1982
  • 1,955
  • 1
  • 18
  • 32
0
votes
1 answer

VIM - FuzzyFinder closes on Backspace, why?

I use FuzzyFinder in VIM (cannot switch to Command-T, no Ruby support on my server). It works well, except for one issue: Whenever I hit backspace (for example, after making a typo), the entire FuzzyFinder buffer just closes. This doesn't happen…
ezuk
  • 3,096
  • 3
  • 30
  • 41
0
votes
0 answers

Vim/FuzzyFinder freezes when doing :FufCoverageFile

While working on (presumably) any file in this project in Vim, when I type :FufCoverageFile, Vim freezes and I have to completely exit the terminal window. I thought it might be a cross-project issue with my .vimrc, but I've only ever seen it happen…
acobster
  • 1,637
  • 4
  • 17
  • 32
0
votes
1 answer

FuzzyFinder in vim - prevent duplicate filenames in Windows

I'm using the FuzzyFinder plugin for vim (specifically with gvim on Windows). It works great, except for one problem: it has many duplicate filenames. As far as I can tell, this happens because it's case sensitive to filenames, whereas Windows is…
Edan Maor
  • 9,772
  • 17
  • 62
  • 92
0
votes
1 answer

vim's fuzzyfinder plugin opens file with name of the whole directory

I am using the vim editor and I have some trouble with the FuzzyFinder I get from here. So I have a project called ~/project/ In the project, there is a project/src/ and project/build/ and a project/tags file. I created the tags file with cd…
roi_saumon
  • 489
  • 4
  • 13
0
votes
1 answer

Fuzzy matching by using SimMetrics library

I need some help here. How would, I create a simple SQL statement to select Names @userEnteredName with these functions. In other words, I want to get customer names from the customer table where the user typed in smyth and get back smith, smitty,…