Ctrl + Shift + Space equivalent in Qt Creator?

In Visual Studio (at least with VAssistX) I can use Ctrl + Shift + Space to show this tooltip for any function that the cursor is currently in. In Qt Creator, this tooltip is only displayed for the first type of function call, so I need to go and remove the opening bracket and then type it again, which deceives the editor, which I just started to enter a function call, and shows a tooltip.

enter image description here

+7
source share
1 answer

If you press Ctrl + Space when the cursor is on either side of the open brace of a function, then Qt Creator displays a tooltip.

You can also write a comma (and then delete it) to make the tooltip appear - writing a comma anywhere between curly braces will show a tooltip.

+9
source

All Articles