I want to make Visual Studio move the autocompleted closing tag a word (or more) to the right. For example, given the following HTML:
<p>I need to emphasize some text.</p>
If I type <em>
before the word "emphasize", Visual Studio autocompletes like so:
<p>I need to <em></em>emphasize some text.</p>
Then I need to move the closing </em>
to get what I want:
<p>I need to <em>emphasize</em> some text.</p>
Is there a way to make Visual Studio do that last step automatically?