Noob question.
When I autocomplete something in HTML, for example a div tag, what I have is:
<div>(the cursor)</div>
Then, I make some space, usually I hit the "enter" button twice and what I have is:
<div>
</div>
I position the cursor between the two div tags and, when I hit the tab button to indent the line, what I have is:
<div>
</div>(the cursor goes here)
This is a bit annoying, so there's a way to prevent this and simply indent when I hit the tab button?
Thank you.