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.
If you take a look at the
.xsdfiles inC:\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 stringtext/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