Sublime Text: Apply Quick Tags
##Keyboard shortcut to wrap the selected text in a tag.
In Dreamweaver, I use Command+T (mac) or Control+T (windows) to open the <a href="http://help.adobe.com/en_US/dreamweaver/cs/using/WSc78c5058ca073340dcda9110b1f693f21-7b86a.html#WSc78c5058ca073340dcda9110b1f693f21-7b34a">Quick Tag Editor</a>. I like that. T for tag.
In sublime text (this is for mac. adjust this for PC.), you can enable a similar feature. Go to "Preferences" > "Key Bindings - User" and add this to your user keymap file:
{ "keys": ["super+alt+t"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
{ "keys": ["super+t"], "command": "insert_snippet", "args": { "name": "Packages/XML/long-tag.sublime-snippet" }}
This will change the existing shortcut for "show overlay" (which I don't really use... yet) and add a shortcut to wrap the selection in a tag. The tag is <p> by default but you can just type the tag you want instead. This is nice! I like it.