Move default keys from keymap.coffee to atom.cson

This commit is contained in:
Kevin Sawicki
2013-04-29 10:11:21 -07:00
parent 8b98a7793d
commit 71aa9802d5
2 changed files with 7 additions and 9 deletions

View File

@@ -30,15 +30,6 @@ class Keymap
@bindingSetsByFirstKeystroke = {}
bindDefaultKeys: ->
@add
'body':
'meta-n': 'new-window'
'meta-,': 'open-user-configuration'
'meta-o': 'open'
'meta-O': 'open-dev'
'meta-w': 'core:close'
'alt-meta-i': 'toggle-dev-tools'
$(document).command 'new-window', => atom.newWindow()
$(document).command 'open-user-configuration', => atom.openConfig()
$(document).command 'open', => atom.open()