0

when I type doc + tabe it automatically generate a baisc html structure:

<html>
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>

</body>
</html>

How can I change this? I search through

C:\Users\[user]\AppData\Roaming\Sublime Text 2\Packages\HTML

But couldn't find the trigger keyword 'doc'

Dale A. Almaraz
  • 183
  • 1
  • 1
  • 12
  • Maybe it's easier and faster to create a new similar Snippet (*Tools>new Snippet*) than to modify the default snippets. – sergioFC Aug 04 '14 at 19:56

1 Answers1

0

Have a look in the Emmet package.

Preferences -> Browse Packages and locate Emmet. Look in the snippets.json file.

But the advice of sergioFC is wise. Make your own snippet instead of trying to alter the default behaviour of Emmet

Community
  • 1
  • 1
jwpfox
  • 5,124
  • 11
  • 45
  • 42