Skip to content

Instantly share code, notes, and snippets.

@bleikamp
Created March 6, 2014 22:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bleikamp/b16e44a0802773553445 to your computer and use it in GitHub Desktop.
Save bleikamp/b16e44a0802773553445 to your computer and use it in GitHub Desktop.
atom
# Located ./lib/atom-plugin.coffee
module.exports =
activate: ->
atom.workspaceView.command "atom-plugin:run", =>
console.log "Activated"
{
"name": "atom-plugin",
"main": "./lib/atom-plugin",
"version": "0.0.0",
"private": true,
"description": "A short description of your package",
"repository": "https://github.com/bleikamp/atom-plugin",
"license": "MIT",
"engines": {
"atom": ">0.50.0"
},
"dependencies": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment