Add alt-backspace and alt-h bindings to backspace to beginning of word

This commit is contained in:
Nathan Sobo
2012-03-29 11:34:41 -07:00
parent 722b685b2e
commit 9ba88959bb
2 changed files with 3 additions and 1 deletions

View File

@@ -10,4 +10,5 @@ window.keymap.bindKeys '.editor'
'meta-shift-left': 'select-to-beginning-of-line'
'meta-shift-right': 'select-to-end-of-line'
'alt-shift-left': 'select-to-beginning-of-word'
'alt-shift-right': 'select-to-end-of-word'
'alt-shift-right': 'select-to-end-of-word'
'alt-backspace': 'backspace-to-beginning-of-word'

View File

@@ -9,3 +9,4 @@ window.keymap.bindKeys '.editor',
'ctrl-e': 'move-to-end-of-line'
'ctrl-h': 'backspace'
'ctrl-d': 'delete'
'alt-h': 'backspace-to-beginning-of-word'