Delete Backword with ESC on Sublime Text

If you are used to delete backword with ESC key as emacs does, but you have fallen in love with SublimeText, I'll brighten your day. On the User keys file add this line:
{ "keys": ["escape", "backspace"], "command": "delete_word", "args": { "forward": false, "sub_words": true } }
Found here after a couple of google searches. Thanks to Nicky Peeters for the gift gist.