Disable automatic insertion of // in the new line after another single-line comment in C++ for Visual Studio

I know how to disable auto-completion of /* ... */ comment block in Visual Studio 2022 C++ (Tools->Options->Text Editor->C/C++->Advanced->Brace Completion->Complete Multiline Comments = False). But I can’t find a way to disable automatic insertion of new single line comment prefix (//) after I press Enter at the end of a previous single line comment.

//My comment here [Press Enter key]
// <-- NO, I DON'T WANT VS TO AUTOMATICALLY INSERT "//" HERE!

Searching for “complete” and “completion” keywords in Options dialog box did not help.

It is probably hidden somewhere else in the settings, but I can’t find it.

What am I missing?

Read more here: Source link