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?