Reputation: 560
Perhaps simple to fix, but in my Sublime when I tab complete it adds an additional angle bracket for HTML, this making it pretty useless as a time saver.
e.g.
<h1>header</h1>
becomes
<<h1>header</h1>
Let me know if you need any additional information to troubleshoot this.
Thanks
Upvotes: 3
Views: 2024
Reputation: 5004
Don't type the opening bracket:
i.e.
<h1 + tab
Instead just type:
h1 + tab
Autocompletion will work and you won't get the extra <
Upvotes: 6