Last active
January 26, 2018 03:22
-
-
Save cchacin/6a4b9229769ef13f0f0e to your computer and use it in GitHub Desktop.
Atom Build for Compile and Run Java code
This file contains 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
{ | |
"cmd": "javac *.java && java {FILE_ACTIVE_NAME_BASE}", | |
"name": "{FILE_ACTIVE}", | |
"args": [ ], | |
"sh": true, | |
"cwd": "{FILE_ACTIVE_PATH}", | |
"env": { | |
}, | |
"errorMatch": "^(?<file>[^\\.]+.java):(?<line>\\d+):(?<col>\\d+)" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment