Updated CLion and C++ code being parsed and the parameter name is being added to the C++, very annoying
已回答
I've just updated CLion and it's started parsing C++ source files as I open them and adding the name of the parameter for the function that is being called as in say the function I'm calling is
bool please_make_it_stop( datetime when );
If I call the function from another code file it will look like this in the editor
datetime when_to_stop = now();
please_make_it_stop( when: when_to_stop );
I did the update and it didn't ask if I wanted this enabled and I would really rather not have to spend time looking around how to disable this really annoying "feature".
Thanks
请先登录再写评论。
Hello!
Those are parameter hints: https://www.jetbrains.com/help/clion/parameter-hints.html. To hide them, go to Settings/Preferences | Editor | General | Appearance and clear the Show parameter names hints checkbox.