no more keybindings in static/

This commit is contained in:
Chris Wanstrath
2011-11-10 00:55:15 -08:00
parent 11019faa30
commit 7f8dffa6e0
2 changed files with 0 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
app:
'cmd-q': (app) -> app.quit()
'cmd-o': (app) -> app.open()
window:
'cmd-shift-I': (window) -> window.showConsole()
'cmd-r': (window) -> window.reload()
document:
'cmd-ctrl-d': -> console.log 'derp'
editor:
'cmd-w': 'removeBuffer'
'cmd-s': 'save'
'cmd-shift-s': 'saveAs'
'cmd-c': 'copy'
'cmd-x': 'cut'
'cmd-/': 'toggleComment'
'cmd-[': 'outdent'
'cmd-]': 'indent'
'alt-f': 'forwardWord'
'alt-b': 'backWord'
'alt-d': 'deleteWord'
'alt-shift-,': 'home'
'alt-shift-.': 'end'
'ctrl-l': 'consolelog'

View File

@@ -10,7 +10,6 @@ paths = [
"#{resourcePath}/src/stdlib"
"#{resourcePath}/src/atom"
"#{resourcePath}/src"
"#{resourcePath}/static"
"#{resourcePath}/extensions"
"#{resourcePath}/vendor"
]