vote up 2 vote down star

I have been an Eclipse user for several years and I have recently switched to IDEA's Intellij. A feature in Eclipse that I really miss is how you can auto-complete method parameters with currently in-scope variables. This feature will, with a single key combo (ctrl+space) fill in all method parameters. As long as my variables were named similarly to the method parameters, I never had a problem with this auto-complete. Is there a plugin or a native way to accomplish this in Intellij?

flag

2 Answers

vote up 2 vote down check

IntelliJ IDEA 9 now supports what they call "super completion" which matches the behavior you are looking for and is available through their early access program.

alt text

IntelliJ IDEA 8 does not allow you to autocomplete more than one parameter at a time. You are forced to use Ctrl-Shift-Space once for each parameter.

link|flag
vote up 2 vote down

Control-Shift-Space (and the completion is based on type, not name)

For more goodness: Help -> Default Keymap Reference

link|flag
sorry I wasn't clear - ctrl+shift+space only shows all parameters. I can then use tab to fill in the next one, and repeat this process, which is better than nothing, but still doesn't fill in all parameters at once. – ekerwin Sep 18 '08 at 15:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.