When I'm editing an HTML file, I start typing, for example,
<im
then SublimeText gives suggests it is gonna be an image tag (as it is), so I just hit Enter and get
<img src="">
It is good, but I want to have all tags of this kind (e.g. img
, br
, input
, etc.) closed:
<img src="" />
or
<br/>
but I don't want to just create new snippets. I need to edit the existing default ones. Is there a way to do it, or I need to write my own snippets?