Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the autocomplete "Committed by typing the following characters" option in VS2015?

I don't want a "space", for example, to trigger auto-complete.

It's not where it used to be in VS2010: (Tools - Options - Text Editor - C# - Intellisense). (MSDN) and I couldn't find it anywhere else.

like image 308
ispiro Avatar asked Aug 10 '15 21:08

ispiro


People also ask

How do I enable IntelliSense in Visual Studio 2015?

Make sure Tools -> Options -> Text Editor -> C# -> IntelliSense -> "Show completion list after a character is typed" is checked.

How do I enable IntelliSense in Visual Studio 2013?

you could check the setting under TOOLS->Options->Text Editor->the specific language(C#) ->IntelliSense.

How does IntelliSense work in Visual Studio?

IntelliSense is a code-completion aid that includes a number of features: List Members, Parameter Info, Quick Info, and Complete Word. These features help you to learn more about the code you're using, keep track of the parameters you're typing, and add calls to properties and methods with only a few keystrokes.


1 Answers

You can use CTRL + ALT + Spacebar to toggle IntelliSense Suggestion Mode. That way when you hit space it wont auto-complete the suggestion. http://blogs.msdn.com/b/zainnab/archive/2012/05/01/9943045.aspx

like image 59
John Grabanski Avatar answered Oct 14 '22 06:10

John Grabanski