I know that specifying the following will trigger the build command, but how do I specify which build to run?
- Code: Select all
view.window().run_command('build')
For example, from a plugin:
- Code: Select all
if logic1:
view.window().run_command('build', 'build1')
else:
view.window().run_command('build', 'build2')
Thanks!