Custom Key Bindings for Sublime Text 3
[
//Indent code -- http://stackoverflow.com/questions/8839753/formatting-html-code-using-sublime-text-2
{ "keys": ["ctrl+shift+r"], "command": "reindent" , "args": {"single_line": false}},
{ "keys": ["ctrl+k", "ctrl+t"], "command": "title_case" },
//Bring back the Quick Switch Project prompt
{ "keys": ["ctrl+alt+p"], "command": "prompt_select_workspace" },
//Save and Build HTML from Markdown at the same time
{ "keys": ["ctrl+s"], "command": "build" }
]