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?
CodePudding user response:
You can try to uncheck Auto list members in Tools>Options>HTML>General.



