Hack in fix for apple keybindings.

The real problem is that they keybinding match algorithm is wrong.
This commit is contained in:
Corey Johnson & Nathan Sobo
2012-03-29 09:59:55 -07:00
parent 90ebbe80e6
commit 51c4e012df

View File

@@ -5,9 +5,9 @@ window.keymap.bindKeys '.editor'
'meta-left': 'move-to-beginning-of-line'
'alt-left': 'move-to-beginning-of-word'
'alt-right': 'move-to-end-of-word'
'shift-meta-up': 'select-to-top'
'shift-meta-down': 'select-to-bottom'
'shift-meta-left': 'select-to-beginning-of-line'
'shift-meta-right': 'select-to-end-of-line'
'shift-alt-left': 'select-to-beginning-of-word'
'shift-alt-right': 'select-to-end-of-word'
'meta-shift-up': 'select-to-top'
'meta-shift-down': 'select-to-bottom'
'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'