Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ctrl+Shift+Space equivalent in Qt Creator?

In Visual Studio (with VAssistX at least), I can use Ctrl+Shift+Space to show this kind of tooltip for any function in which the cursor is currently in. In Qt Creator this tooltip is shown only when you first type the function call, so I have to go and delete the opening parenthesis, then type it again, which fools the editor that I just started typing function call and it shows the tooltip.

enter image description here

like image 595
sashoalm Avatar asked Dec 31 '11 11:12

sashoalm


1 Answers

If you press Ctrl+Space when the cursor is on either side of the opening brace of the function then Qt Creator shows the tooltip.

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

like image 99
Bill Avatar answered Sep 27 '22 20:09

Bill