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