Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

say that I have this code:

class User < ActiveRecord::Base
  scope :recent, where(:created_at => 2.weeks.ago)
end

... And then in vim, I go to another file and see:

User.recent

Is there a way I can configure ctags so that when looking up :tag recent, it will take me to the scope declaration? It appears that it only looks for things that are actual method definitions.

...

Also, Is there a way to specify a path for tags? What I am getting at is, I would like to generate ctags for all the gems in a given rails project so that I can jump to 3rd party code method declarations from within my code. Is this possible?

share|improve this question
Did you try something like VimRuby : github.com/vim-ruby/vim-ruby/wiki/VimRubySupport ? – Nicolas Martin Mar 1 '12 at 7:56

1 Answer

Yes, ctags only indexes method and variable/constant definitions by default. Also Vim's default behaviour is to jump to the tag. If you often need to jump to the scope maybe you'll need a custom mapping.

As for the second part of your question, you could use this:

:set tags=/path/to/tags

or use the -a flag to append your new tags to a previously existing tags file.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.