Vim plugin FuzzyFinderTextMate

I installed the vim plugin in different ways. I try to start it using Ctrl-T, but I always get this error: E492: Not an editor command: FuzzyFinderTextMate

+3
source share
4 answers

I got the same error "E492: Not an editor command: FuzzyFinderTextMate" with OS X 10.6.2. It turns out that the default vim installation in Snow Leopard was not compiled with ruby ​​support. As soon as I recompiled vim with ruby ​​support, the plugin worked as expected.

Installation steps that worked for me:

, update .

+5
+2

10.6.4:

fuzzyfinder.vim fuzzyfinder_textmate.vim http://github.com/sethbc/fuzzyfinder_textmate. ~/.vim/plugin

fuzzy_file_finder.rb github.com/jamis/fuzzy_file_finder ~/.vim/ruby ​​

In .vimrc, I added:

map <leader>t :FuzzyFinderTextMate<CR>

so that "\ t" (without the quotes) will start, although you should display everything that is better for you (see other answers / comments).

(I apologize for the lack of links. It seems that I do not have enough reputation to publish more than one link.)

+1
source

Source: https://habr.com/ru/post/1720689/


All Articles