Files
atom/static/key-bindings.coffee
2011-11-10 00:54:34 -08:00

27 lines
539 B
CoffeeScript

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'