Intellij code completion showing method / constructor parameter types and variable names

I find it extremely annoying that you often don’t get help in defining method and constructor parameter signatures when you already wrote the first parameter.

Instead, Intellij will show the variables available to you in your context. This is good, but not the first prio. I want to see the signature of the method / constructor.

This means that you always need to delete and CTRL + SPACE to see the signature.

Is there any way to solve this problem?

+5
source share
2 answers

You can press Ctrl + P to show the signature of the method / constructor, see this link for more details:

https://www.jetbrains.com/idea/webhelp/viewing-method-parameter-information.html

+8
source

In fact, you do not need to press Ctrl + P , you can customize the idea to display information when you need it. Just select the Show full signatures and Autopopup in (ms:) fields, and the information will magically appear when you need it most, if you do not have to bend one finger.

Intellij Idea - Configure-Editor-Code-Completion

+14
source

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


All Articles