/* If you migrated from Sublime Text 2 to Sublime Text 3 the tab no longer works for expanding abbreviations using the Emmet package. To fix it add this to Key Bindings - User and get the tab working as the keyboard shortcut for expanding emmet abbreviations. */
{
"keys": [
"tab"
],
"args": {
"action": "expand_abbreviation"
},
"command": "run_emmet_action",
"context": [
{
"key": "emmet_action_enabled.expand_abbreviation"
}
]
}