How can we disable VS 2010 Intellisense

2020-03-10 05:12发布

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

6条回答
来,给爷笑一个
2楼-- · 2020-03-10 05:42

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.

查看更多
对你真心纯属浪费
3楼-- · 2020-03-10 05:43
  1. Change the file extension to ".txt "
  2. Edit without intellisense.
  3. Change file extension back to what it was.
查看更多
劳资没心,怎么记你
4楼-- · 2020-03-10 06:02

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++.

查看更多
可以哭但决不认输i
5楼-- · 2020-03-10 06:04

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.

查看更多
何必那么认真
6楼-- · 2020-03-10 06:05

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

Update: This also works with VS2012.

查看更多
欢心
7楼-- · 2020-03-10 06:06

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#.

查看更多
登录 后发表回答