From 51c4e012dfc8fc1e6b66bade975c1e126512e81a Mon Sep 17 00:00:00 2001 From: Corey Johnson & Nathan Sobo Date: Thu, 29 Mar 2012 09:59:55 -0700 Subject: [PATCH] Hack in fix for apple keybindings. The real problem is that they keybinding match algorithm is wrong. --- src/atom/keybindings/apple.coffee | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/atom/keybindings/apple.coffee b/src/atom/keybindings/apple.coffee index 41e98715e..5c045bd4b 100644 --- a/src/atom/keybindings/apple.coffee +++ b/src/atom/keybindings/apple.coffee @@ -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' \ No newline at end of file + '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' \ No newline at end of file