Last active
October 16, 2016 18:51
-
-
Save monkstone/235aa375412afede7c6caa69da161b37 to your computer and use it in GitHub Desktop.
atom-k9.cson
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'.platform-linux atom-text-editor, .platform-win32 atom-text-editor': | |
'alt-ctrl-b': 'atom-k9:run' | |
'alt-ctrl-shift-w': 'atom-k9:watch' | |
'alt-ctrl-c': 'atom-k9:close' | |
'.platform-darwin atom-text-editor': | |
'alt-cmd-b': 'atom-k9:run' | |
'alt-cmd-shift-w': 'atom-k9:watch' | |
'alt-cmd-c': 'atom-k9:close' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
".platform-linux atom-text-editor, .platform-win32 atom-text-editor": { | |
"alt-ctrl-b": "atom-k9:run", | |
"alt-ctrl-shift-w": "atom-k9:watch", | |
"alt-ctrl-c": "atom-k9:close" | |
}, | |
".platform-darwin atom-text-editor": { | |
"alt-cmd-b": "atom-k9:run", | |
"alt-cmd-shift-w": "atom-k9:watch", | |
"alt-cmd-c": "atom-k9:close" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment