From 07eb2d014a63b29b053c3d94c75a749bc253c739 Mon Sep 17 00:00:00 2001 From: probablycorey Date: Tue, 17 Dec 2013 11:23:18 -0800 Subject: [PATCH] Word movement uses `end-of-word` and `beginning-of-word` Closes #1253 --- keymaps/base.cson | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/keymaps/base.cson b/keymaps/base.cson index feee30550..689ad1732 100644 --- a/keymaps/base.cson +++ b/keymaps/base.cson @@ -1,9 +1,9 @@ '.editor': # Platform Bindings - 'alt-left': 'editor:move-to-previous-word-boundary' - 'alt-right': 'editor:move-to-next-word-boundary' - 'alt-shift-left': 'editor:select-to-previous-word-boundary' - 'alt-shift-right': 'editor:select-to-next-word-boundary' + 'alt-left': 'editor:move-to-beginning-of-word' + 'alt-right': 'editor:move-to-end-of-word' + 'alt-shift-left': 'editor:select-to-beginning-of-word' + 'alt-shift-right': 'editor:select-to-end-of-word' 'home': 'editor:move-to-first-character-of-line' 'end': 'editor:move-to-end-of-line' 'shift-home': 'editor:select-to-first-character-of-line'