Parentheses auto completion on function calls

Answered

Consider the following code:

void incrediblyLongNamedFunction() {/*...*/}

int main()
{
incre/*Ctrl+Space*/
return 0;
}

As far as I remember, in pre-2020.1 versions auto-completion added parentheses after completing function call, i.e. in the above case you got `incrediblyLongNamedFunction()`. But after the last update it's not the case anymore, and it completes only to `incrediblyLongNamedFunction`.

How to re-enable parentheses appending?

 

0
3 comments

Hi!

Do you have Tab indention enabled in File | Settings | Editor | Code Style | C/C++ > Tab and Indents?

0

Yes, tab indention is enabled.

Just updated to 2020.1.1 and the problem has gone, thanks!

 

0

Please sign in to leave a comment.