Created
January 26, 2015 20:02
-
-
Save mickeypash/ee1fd034733e8e46785b to your computer and use it in GitHub Desktop.
Run and Compile Java from SublimeText 2
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
{ | |
"cmd": ["javac", "-Xlint", "$file"], | |
"file_regex": "^(...*?):([0-9]*):?([0-9]*)", | |
"selector": "source.java", | |
"variants": [ | |
{ "cmd": ["javac", "-Xlint", "$file"], | |
"file_regex": "^(...*?):([0-9]*):?([0-9]*)", | |
"selector": "source.java", | |
"name": "Java Lintter" | |
}, | |
{ "cmd": ["java", "$file_base_name"], | |
"name": "Run Java" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The original: