From 3515591d58d6ba48507a4192aa445dbdf39b767d Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Wed, 14 Mar 2012 19:17:32 -0600 Subject: [PATCH] Fix bug where you couldn't use backspace, delete, arrow keys in file finder. Bind all these movement keys only to editor for now, because they're interfering with the default input behavior. --- src/atom/editor.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/atom/editor.coffee b/src/atom/editor.coffee index 70531a0ed..56225d669 100644 --- a/src/atom/editor.coffee +++ b/src/atom/editor.coffee @@ -50,7 +50,7 @@ class Editor extends View @autoIndent = true bindKeys: -> - window.keymap.bindKeys '*:not(.editor *)', + window.keymap.bindKeys '.editor', 'meta-s': 'save' right: 'move-right' left: 'move-left'