I have specified the following build system for sublime.
When I comment out my file_regex line, it works fine. When I comment it back it, my build system is no longer recognized.
The regex I have provided works perfectly fine when using it in the “find” box in sublime text. Why is is breaking the sublime-build file?
{
“cmd”: [“gradle” , “build”],
“working_dir”: “${project_path}”,
“file_regex”: “([^/]+.java)”
}