Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I get Eclipse to show me a method's signature while typing?

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.

like image 650
ssb Avatar asked Nov 13 '22 12:11

ssb


1 Answers

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

like image 118
emanski Avatar answered Nov 15 '22 06:11

emanski