Eclipse equivalent IntelliJ Ctrl + P

In IntelliJ, when the cursor is inside the method, you can press Ctrl + P to view the parameters of the method.

What is an equivalent shortcut in Eclipse?

+4
source share
2 answers

According to this list of commands , you can show a list of parameter types for a method using Ctrl + Shift + SPace . Alternatively, you can use the shortcut Ctrl + Shift + L to display a list of all the shortcuts in Eclipse.

+7
source

You can use Ctrl + Shift + Space to view method parameters in eclipse

0
source

Source: https://habr.com/ru/post/1502326/


All Articles