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

Some time ago, when I was using Janus, I could autocomplete Ruby code. I don't mean "autocomplete" in the sense of the SuperTab plugin, I mean, for example, when you type

collection.ea

And then hit the Tab key, you get

collection.each do ||

end

And your cursor is positioned between the ||. You could also do the similar when defining a method.

Does anyone know how that plugin is called?. The problem is that I'm not using Janus anymore, so I don't have that plugin anymore. I looked at every plugin in the Janus documentation, but I couldn't find it.

share|improve this question

1 Answer

up vote 6 down vote accepted

Could it be Snipmate?

You can find Ruby snippets for Snipmate here.

Just do:

git clone https://github.com/scrooloose/snipmate-snippets.git
rake deploy_local
share|improve this answer
That's exactly it! Thank you so much :D – janko-m May 10 '12 at 12:05

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.