Recently I installed Windows 8 on my notebook, but I'm not longer able to build anything using Sublime Text 2. Neither Java nor in other languages.
I've already configured the path variables, I'm able to compile java manually via command prompt (jdk1.7.0_51), but when I try to build on Sublime, just a "Building" message appears at the bottom and nothing happens.
I used the same settings also from two other computers with Windows 8 that are running and it did not work.
I try to use the standard sublime-build option and this code:
{
"cmd": ["javac", "$file_name","&&","java", "$file_base_name"],
"file_regex": "^(...*?):([0-9]*):?([0-9]*)",
"path": "C:\\Program Files\\Java\\jdk1.7.0_51\\bin\\",
"selector": "source.java",
"shell": true
}
I tried these links but also didn't work: Compiling and Running Java Code in Sublime Text 2 and Sublime Text don't build anything
For instance, I try to compile C++ and C and nothing happens. Just the "Building" message but no erros. Any suggestions?