How to edit html autocomplete in Sublime Text 3

Viewed 538

i can't seem to find how to configure the html autocomplete snippet. i.e: when i write html and hit tab it autocompletes with the following:

<!DOCTYPE html>
<html>
<head>
 <title></title>
</head>
<body>

</body>
</html>

I'd like to edit that and make a custom one, is this possible?

Cheers J

1 Answers
  1. Install Package Resource Viewer and start it.
  2. Open Resource -> HTML -> Snippets -> html.sublime-snippet
  3. Edit and save.

enter image description here

Related