Neil Steiner
Neil Steiner

Reputation: 787

Turning off auto-suggestions in Visual Studio 2019 without turning off IntelliSense

I am new to Visual Studio and would like to disable the IntelliSense automatic suggestions without disabling IntelliSense entirely. More precisely, I don't want popup hints continually covering the code I'm working on, but I'd still like to be able to use Ctrl-Space to request suggestions at times. I'm coding in C/C++.

I've seen information on how to do this for Visual Studio Code, but I haven't found anything similar for Visual Studio.

Or if this is just a matter of me not understanding how to properly use Visual Studio or IntelliSense, please help me understand or point me to a forum where true Microsoft devotees hang out.

Upvotes: 7

Views: 7852

Answers (3)

Neil Steiner
Neil Steiner

Reputation: 787

The solution is to go to Tools -> Options -> Text Editor -> C/C++ -> General and uncheck Auto list members.

Credit goes to this answer in "Intellisense “Toggle Completion Mode” doesn't work with C++ in Visual Studio 2010 Professional".

Upvotes: 6

Mr Qian
Mr Qian

Reputation: 23740

Turning off auto-suggestions in Visual Studio 2019 without turning off IntelliSense

Solution

Edit Menu-->Intellisense-->click Toggle Completion Mode

enter image description here

After that, when you type, it will not cover the code you are working on automatically.

Hope it could help you.

Upvotes: 1

MinebloxSr
MinebloxSr

Reputation: 11

Mabby this can help you this is a article i found about this

https://www.technipages.com/visual-studio-turn-off-autocomplete

Upvotes: 0

Related Questions