5

Basically I have code completion working (to the best of my knowledge that it 'works') in Eclipse, but it's not nearly as good as what Visual Studio has. I have it set to call auto-complete when ( is pressed, but doing this does not show a list of the method parameters. I have to mouse over the method for that to happen, and I'd prefer for it to happen while I type, like Intellisense in VS.

I'm using Aptana 3 with PyDev if it's relevant.

ssb
  • 1,143
  • 2
  • 15
  • 34
  • I'm currently in the process of looking for a better Python IDE, for exactly this reason. I've found that you can get close to a VS experience in PyCharm with assert statements---it's a bit of a pain to write another line of code so that code completion works, but my guess is that this is the only way that such a thing can be done in Python. – BenDundee Jan 28 '13 at 15:27

2 Answers2

1

The best way to do this in eclipse is to press Ctrl+space

http://help.eclipse.org/galileo/index.jsp?topic=/org.eclipse.jdt.doc.user/tips/jdt_tips.html

Sᴀᴍ Onᴇᴌᴀ
  • 7,491
  • 8
  • 27
  • 56
emanski
  • 21
  • 7
0

Just press Ctrl + Space, as Jonas Karlsson said.

Sᴀᴍ Onᴇᴌᴀ
  • 7,491
  • 8
  • 27
  • 56
twango
  • 1
  • 1