Vyacheslav Loginov
Vyacheslav Loginov

Reputation: 3216

Vim autocomplete Rails model methods

Is it possible to configure rubycomplete.vim that popup scope methods at the top and gather them from models files first, than from global declaration of ActiveRecord methods

Upvotes: 6

Views: 478

Answers (1)

NilsHaldenwang
NilsHaldenwang

Reputation: 3667

If you are using tpopes awesome rails.vim in conjunction with exuberant ctags you can simply run the command :Rtags and it will generate all relevant tags for your project.

Upvotes: 1

Related Questions