Parentheses auto completion on function calls
已回答
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?
请先登录再写评论。
Hi!
Do you have Tab indention enabled in File | Settings | Editor | Code Style | C/C++ > Tab and Indents?
Yes, tab indention is enabled.
Just updated to 2020.1.1 and the problem has gone, thanks!
Seems you faced https://youtrack.jetbrains.com/issue/CPP-19902. I'm glad it works now!