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.
This commit is contained in:
Nathan Sobo 2012-03-14 19:17:32 -06:00
parent 04fce8067f
commit 3515591d58

View File

@ -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'