From 7a0a808af17fc83488cf2705e0bca5cd8477aba5 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Tue, 19 Aug 2014 12:14:16 -0600 Subject: [PATCH] Change ctrl-a binding to editor:move-to-first-character-of-line Considering that the entire Atom core team has ctrl-a bound to move to the first character and it's also the the default behavior of Sublime, this seems like a more sensible and useful default option even though it deviates from text editing norms on OS X. --- keymaps/darwin.cson | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keymaps/darwin.cson b/keymaps/darwin.cson index 9c164c9c0..34f977209 100644 --- a/keymaps/darwin.cson +++ b/keymaps/darwin.cson @@ -119,7 +119,7 @@ 'cmd-shift-right': 'editor:select-to-end-of-line' 'alt-backspace': 'editor:delete-to-beginning-of-word' 'alt-delete': 'editor:delete-to-end-of-word' - 'ctrl-a': 'editor:move-to-beginning-of-line' + 'ctrl-a': 'editor:move-to-first-character-of-line' 'ctrl-e': 'editor:move-to-end-of-line' 'ctrl-k': 'editor:cut-to-end-of-line'