aboutsummaryrefslogtreecommitdiff
path: root/atom/init.coffee
blob: 09dab00dc9b93e9c60b02ca945eff2550ab10b38 (plain)
1
2
3
4
5
6
7
8
9
10
11
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
#   editor.onDidSave ->
#     console.log "Saved! #{editor.getPath()}"