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

I am trying to use emacs for my rails project. I am kind of fed up with the etag navigation, Its really dumb. So is there any other way to do source code navigation for ruby in emacs?

Note: I also use rinari minor mode. Which is kind of intelligent to move between models, views ... But what i want is some kind of jump to definition kind of stuff that you can see in regular IDEs. Please dont suggest me any IDEs as i am pretty satisfied with Emacs for everything else but this

share|improve this question

2 Answers

up vote 2 down vote accepted

ECB, or Emacs Code Browser (http://ecb.sourceforge.net/), is great for this. I use it for Rails Development; on activation, by default, you'll get a three panel window with folder structure, file list, and method browser.

For jumping to specific method definitions, check out the TextMate Minor Mode. the command s-T will get you a dialogue that jumps you to the specified method, matching as you type.

share|improve this answer
Ya i have that too. But what i want is jump to definition. Not viewing the methods/classes declared in the specific file I mean similar to etags but little more intelligent – vinothkr Nov 25 '10 at 13:56
Ah, one sec, let me update – Sam Ritchie Nov 25 '10 at 13:58
Thanks but how to index my files? It always No items found in index for the symbol... – vinothkr Nov 25 '10 at 14:29
the command textmate-clear-cache should do it. On my setup, it's bound to M-s-T. Run that, and try s-T again.. you should see the full list! – Sam Ritchie Nov 25 '10 at 14:32
But that searches only in the current file anyway thanks – vinothkr Nov 25 '10 at 15:27

For more advanced "jump to definition", check out robe.

share|improve this answer
Robe looks interesting... It looks like it depends on inf-ruby though? What's the best way to go about loading a rails project into inf-ruby? – catphive Apr 3 at 0:56
Install rinari and type M-x rinari-console. The "Usage" section inside the file mentions it. – Dmitry Apr 3 at 5:06

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.