Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove intellisense suggestions in Visual Studio?

I recently had a bug in Firefox due to me choosing the wrong script type with intellisense.

<script type="text/jscript">

vs

<script type="text/javascript">

Is it possible to remove options from intellisense?

EDIT: I still want statement completion, just not all the options.

like image 592
rick schott Avatar asked Aug 10 '10 19:08

rick schott


1 Answers

If you take a look at the .xsd files in C:\Program Files\Microsoft Visual Studio 9.0\Common7\Packages\schemas\html\ (your directory structure will vary obviously, based on your OS bitness and system drive letter), you'll find several instances of the string text/jscript.

Use Visual Studio to do a find in files across the whole directory and remove values of <xsd:enumeration value="text/jscript" />, that should eliminate it from Visual Studio's intellisense.

Note: I recommend taking a copy of the files first

like image 93
Rob Avatar answered Sep 19 '22 20:09

Rob