Files
atom/docs/sample-conf.coffee
Corey Johnson e64a0e64a1 wip
2011-10-26 11:10:52 -07:00

25 lines
501 B
CoffeeScript

# ~/.atomicity/settings.coffee
# ----------------------------
editor:
tabSize: 2
spaces: true
# ~/.atomicity/keybindings.coffee
app:
"cmd-q": (app) -> app.quit()
"cmd-q": "quit" # optional way?
editor:
"ctrl-p": (editor) -> editor.moveUp()
"ctrl-a": (editor) ->
position = editor.cursorPosition()
position.column = 0
editor.setCursorPosition(position)
tree:
"cmd-ctrl-n": (tree) -> tree.toggle()
window:
'Command-O' : @open
'Command-Ctrl-K' : @showConsole