Reputation: 1680
It's a .cshtml file, this is my code:
<table>
<thread>
<tr></tr>
</thread>
</table>
When I type the <tr
and enter >
, the intellisense tooltip doesn't show an option for the <tr>
tag as shown below:
No big deal. But when I do type >
, it automatically "corrects" my code, turning it into:
Same thing happens if I type <tr
and hit enter. The only way I can see now to type tags like this is to go back and change what I typed.
I have failed to find any relevant option in Visual Studio>Tools>Options. What can I do?
Upvotes: 0
Views: 319
Reputation: 18159
You can try to uncheck Auto list members
in Tools>Options>HTML>General
.
Upvotes: 1