How can we disable VS 2010 Intellisense

2020-03-10 05:34发布

问题:

My Visual Studio 2010 is too slow most of the time. So I decided to disable the vs2010 Intellisense. Can any one help me?

回答1:

Microsoft doesn’t provide any way to disable Intellisense. This wouldn’t be a problem, except Intellisense can and does crash.

To disable Intellisense, close Visual Studio and navigate to your vcpackages folder:

C:\Program Files\Microsoft Visual Studio 8\VC\vcpackages

Rename the file feacp.dll to something like foulup.dll. Now Visual Studio won’t be able to load Intellisense, but rather than crash it will just quietly drop its features.

or

Also have look to this solutions : how to disable intellisense...

Ctrl + J.



回答2:

For C/C++: Tools -> Options -> Text Editor -> C/C++ -> Advanced -> Disable IntelliSense.

Update: This also works with VS2012.



回答3:

In case you are using ReSharper the way to disable IntelliSense is as following: ReSharper > Options... > Environment > IntelliSense > Autopopup > Enable Automatic IntelliSense Popup > Uncheck > Save > Profit.

This also works in Visual Studio 2012 for C#.



回答4:

Simplest way I can think of: change the file extension association so that *.cs files open in a plaintext document window, not the C# editor. Repeat for other extensions as desired.



回答5:

It's actually easy for most languages:

Select Tools/Options on the menu. On the Options dialog box, select Text Editor, then select the language you use, then select "General". Uncheck "Auto list members" and "Parameter completion".

Works on VS 2012, 2010, and others, and seems to be available for most languages including C#, Basic, and C/C++.



回答6:

  1. Change the file extension to ".txt "
  2. Edit without intellisense.
  3. Change file extension back to what it was.