From ab9fc642c1df96fb08846a6a66c61d44e631c99f Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Wed, 24 Oct 2018 10:36:58 -0700 Subject: [PATCH] Move syntax-aware-selection key bindings to base keymap --- keymaps/base.cson | 2 ++ keymaps/darwin.cson | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/keymaps/base.cson b/keymaps/base.cson index b421392ab..52a293df8 100644 --- a/keymaps/base.cson +++ b/keymaps/base.cson @@ -8,6 +8,8 @@ 'atom-text-editor:not([mini])': # Atom Specific 'ctrl-shift-c': 'editor:copy-path' + 'alt-up': 'editor:select-larger-syntax-node' + 'alt-down': 'editor:select-smaller-syntax-node' # Sublime Parity 'tab': 'editor:indent' diff --git a/keymaps/darwin.cson b/keymaps/darwin.cson index ec73bc8c2..bbdd66e67 100644 --- a/keymaps/darwin.cson +++ b/keymaps/darwin.cson @@ -133,8 +133,6 @@ 'cmd-ctrl-left': 'editor:move-selection-left' 'cmd-ctrl-right': 'editor:move-selection-right' 'cmd-shift-V': 'editor:paste-without-reformatting' - 'alt-up': 'editor:select-larger-syntax-node' - 'alt-down': 'editor:select-smaller-syntax-node' # Emacs 'alt-f': 'editor:move-to-end-of-word'