I´m using Sublime Text 2 together with the ant build system. CTRL+B works perfectly fine to start the build with the default target. However my question is, is there a ways to define different ant build targets and have a mechanism to switch between them easily?
I thought about creating additional custom build commands for each target - for example like "clean". It works, but that is not the best approach in my eyes because you have to go to "Tools > Build System > Ant (clean)" and hit CTRL+B afterwards.
ctrl+shift+b
does not run the last cmd in the variants array, it searches for the variant with the nameRun
and executes that one. Figured that out by taking a look at the default key bindings. – Difficulty