Dan Cojocaru
Dan Cojocaru

Reputation: 167

How to show parameter name hints for C++ in CLion?

I know about Ctrl/Cmd+P to show the popup for parameters, however that's not what I am looking for.
Not this popup

I am looking for the parameter name hints (which can be found in Preferences > Editor > General > Appearance), but as I can see they are only available for TypeScript (on a C++ IDE???).
Parameter Name Hints Popup Only TypeScript

How can I enable this feature for C++?

P.S. Here is a screenshot from IntelliJ IDEA on Java. (Found on this question)

Upvotes: 7

Views: 2622

Answers (2)

fifteen cai
fifteen cai

Reputation: 1

In 2021.1.1 of CLION on linux, The setting name is Inlay hints

enter image description here

Upvotes: 0

z3dd
z3dd

Reputation: 176

Type hints for C++ were added in 2019.2. Enabled by default, disabled in Appearance -> Show parameter name hints.

Upvotes: 3

Related Questions