Great! Thanks guys.
I have one more question that is more about snippets in general. When using a snippet, you have these "tab stops" (i.e. ${1:something} ) for areas you want to jump to. It seems that Emmet doesn't fire until you have gone through all the tab stops.
For example, if I hit "! TAB" I get the following (obviously without the [tab stops]):
- Code: Select all
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>[Document]</title>
</head>
<body>
[tab stop]
</body>
</html>[tab stop]
If I jump to the second tab stop and then type "ul>li TAB" nothing happens because I'm still in snippet population mode. This is shown as being in "Field 2 of 3" in the status bar. I have to hit TAB 3 times, then jump back to the body and try the Emmet expansion once more for it to work.
Am I doing something wrong?