Skip to content

Instantly share code, notes, and snippets.

@Iristyle
Forked from nickyp/gist:4045823
Created November 10, 2012 02:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Iristyle/4049596 to your computer and use it in GitHub Desktop.
Save Iristyle/4049596 to your computer and use it in GitHub Desktop.
Map "Escape, Backspace" to Delete Word Backward in Sublime Text 2
// Maps Emacs style "Escape, Backspace" to Delete Word Backward
{ "keys": ["escape", "backspace"], "command": "delete_word", "args": { "forward": false, "sub_words": true },
"context":
[
{ "key": "setting.is_widget", "operator": "equal", "operand": false }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment