Espresso has a kind of smart tag completion for html tags that I've really come to rely on, and was curious if there was an equivalent for Sublime.
Basically because every html tag that's opened needs a matching closing tag, the editor knows if you are starting a closing tag, which one it should be, and simply closes the currently open tag automatically, without even requiring you to press tab or anything. You just start typing "</" and the editor instantly completes the currently open tag:

As you can see, this is very fast and even works with custom tags. it also plays nice with self closing tags like <br /> that don't count towards needing to be closed then.
I've found this to be incredibly time saving, to the point where now I feel like I'm really wasting time in Sublime when I have to type out any closing tag by hand.
Is there a way to enable something like this in Sublime, or a package that might add such functionality?
-edit-
I've found that with alt+. you can close tags. Is there a way that when I type the characters "</" the editor parses them out and that command, which would effectively emulate the same functionality from Espresso?