├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── keymaps └── nuke.cson ├── lib ├── nuke.coffee ├── send_to_nuke.py └── status-view.coffee ├── menus └── nuke.cson ├── package.json ├── setup ├── atom_server.py └── menu.py └── styles └── nuke.less /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokejepsen/atom-foundry-nuke/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokejepsen/atom-foundry-nuke/HEAD/README.md -------------------------------------------------------------------------------- /keymaps/nuke.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokejepsen/atom-foundry-nuke/HEAD/keymaps/nuke.cson -------------------------------------------------------------------------------- /lib/nuke.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokejepsen/atom-foundry-nuke/HEAD/lib/nuke.coffee -------------------------------------------------------------------------------- /lib/send_to_nuke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokejepsen/atom-foundry-nuke/HEAD/lib/send_to_nuke.py -------------------------------------------------------------------------------- /lib/status-view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokejepsen/atom-foundry-nuke/HEAD/lib/status-view.coffee -------------------------------------------------------------------------------- /menus/nuke.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokejepsen/atom-foundry-nuke/HEAD/menus/nuke.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokejepsen/atom-foundry-nuke/HEAD/package.json -------------------------------------------------------------------------------- /setup/atom_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokejepsen/atom-foundry-nuke/HEAD/setup/atom_server.py -------------------------------------------------------------------------------- /setup/menu.py: -------------------------------------------------------------------------------- 1 | import atom_server 2 | -------------------------------------------------------------------------------- /styles/nuke.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokejepsen/atom-foundry-nuke/HEAD/styles/nuke.less --------------------------------------------------------------------------------