0

I'm used to developing Java programs in Eclipse, where I can type something like... "SomeObject.", and when I press ".", it has a small list popup from which I can choose (and automatically complete) the method and variable names within that object.

I was wondering if there is any version of this functionality in TextMate?

Thank you.

Jamie
  • 3,890
  • 3
  • 26
  • 35
Tattat
  • 15,548
  • 33
  • 87
  • 138
  • This Question is similar to http://stackoverflow.com/questions/3570919/auto-completion-in-textmate-for-ruby – Florian Pilz Jan 06 '11 at 14:14
  • The nearest you can come to this feature is Option-Esc. This will bring up a list of completions Esc would offer you stepwise. It's still not the feature you asked for. I found this answer in the related question http://stackoverflow.com/questions/2556391/textmate-code-completion-question/ – Florian Pilz Jan 09 '11 at 07:26

1 Answers1

2

From TextMate's FAQ:

Q: Does TextMate have code completion, e.g. type a variable name and see all member data for that variable (object)?

A: No.

Sounds like you don't want a text editor (like TextMate); you want an IDE (like Eclipse or Visual Studio).

J Cooper
  • 16,891
  • 12
  • 65
  • 110