Remove IntelliSense features from Visual Studio 2005

Source: Internet
Author: User
Tags garbage collection

The IntelliSense function of VS is similar to the auto-completion in other Ides, which is the ability to automate the completion, but unlike auto-completion in VI and Emacs, IntelliSense compares intelligent, Write alternative fields based on the syntax of the programming language, such as the following code:

Class Peon {

Public

void Work ();

};

Class Warrior {

Public

void Wallop ();

};

void Foo () {

Peon p;

P.w

After the input "P.W", use VI's autocompletion, just take the word that can start with W as an alternative, so that work, Warrior, Wallop are, in fact, p is a peon type of variable, It cannot be warrior or wallop, but IntelliSense can exclude these two distractions based on syntax.

This would have been a good feature, but for languages like C + +, you need to parse the source code, Every time you change the code, it is possible to raise an IntelliSense update. ncb file, and IntelliSense is not as smart as Java garbage collection, not only is it inappropriate, but it takes a lot of time. For a SOLUTION,VS environment containing multiple projects it is easy to zombie, with a "updating IntelliSense" hint in the lower left corner.

Unfortunately, vs to 2005 has not disable the function of the UI, so have to use some very means to disable this sometimes annoying features. IntelliSense will keep updating solution. ncb files, make this file into Read-only, and then confirm a bunch of dialog boxes is a way, but too troublesome, the simplest direct way, need a little hero broken wrist courage, is to put the VS installation directory of the VC/ Vcpackages/feacp.dll removed, this DLL is the tube of IntelliSense, and then the world is pure.

Note: After the IntelliSense feature is removed, the ClassView of VS will not be able to see any information.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.