atom-runner icon indicating copy to clipboard operation
atom-runner copied to clipboard

This package will run various script files inside of Atom. It currently supports JavaScript, CoffeeScript, Ruby, and Python. You can add more.

Results 5 atom-runner issues
Sort by recently updated
recently updated
newest added

I have added ``` .atom-runner { -webkit-user-select: none; } .atom-runner pre { -webkit-user-select: initial; } ``` which first disables option to select anything within the package area. Then for the...

My patch implements support for the FILE_ACTIVE macro (shamelessly stolen from the script package at https://github.com/rgbkrk/atom-script which I wasn't able to configure properly and consistently). FIY This is my first...

When switching between files it is useful to be able to run the last run script without having to switch back to it.

ChildProcess.kill() doesn't stop forked subprocesses. This commit uses [tree-kill](https://www.npmjs.com/package/tree-kill) to properly handle forked subprocesses on all platforms.

Hi, I implemented a custom convenient way to run my custom script `npm test` and I though it would be nice to share it with everyone. Thank you for this...