How to remove Intellisense sentences in Visual Studio?

I recently had a bug in Firefox due to the fact that I chose the wrong script type with intellisense.

<script type="text/jscript">

against

<script type="text/javascript">

Can parameters be removed from intellisense?

EDIT: I still need to complete the statement, but not all parameters.

+5
source share
3 answers

If you look at the files .xsdin C:\Program Files\Microsoft Visual Studio 9.0\Common7\Packages\schemas\html\(your directory structure will obviously differ, depending on your bit of the operating system and the letter of the system drive) you will find several line instances text/jscript.

Visual Studio <xsd:enumeration value="text/jscript" />, Visual Studio intellisense.

:

+6

--- > ---- > ---- >

.

+2

Tools → Code Snippet Manager ...

0
source

All Articles