Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a shortcut to implement interface methods in intellij?

When I type something along the line of this:

class Foo implements Bar{}

intellij idea highlights that line and then I have to hover over it with the mouse pointer until a red lightbulb pops up and click "Implement methods". Is there a keyboard shortcut for this?

like image 284
Pavel Avatar asked Oct 25 '25 07:10

Pavel


1 Answers

Ctrl+I/Cmd+I (Windows/Mac) is the shortcut for "Implement Methods" in the default IntelliJ keymap.

like image 50
JJF Avatar answered Oct 28 '25 04:10

JJF