Turn off Leda external builder or autocompiler programmatically
Hi,
The plugin I'm developing requires the IDEA 12 external builder to be off at all times, how can I access there settings and turn it off from within my plugin programmatically?
Please sign in to leave a comment.
com.intellij.compiler.CompilerWorkspaceConfiguration.getInstance(project).USE_COMPILE_SERVER and MAKE_PROJECT_ON_SAVE.
Note that your plugin should change the option values only after getting explicit user confirmation via some dialog or in any other clear way.
Thank you,
I will keep that in mind.