> > |
%META:TOPICINFO{author="TimurZambalayev" date="1053802740" format="1.0" version="1.1"}%
%META:TOPICPARENT{name="TimurZambalayev"}%
How to set an option:
- Install plugin.
- Restart IDEA.
- Quit IDEA.
- Find file: $IDEA_CONFIG_DIR/options/other.xml
- (at the end of the file) Find the component element.
- Find the option element.
- Set the option's value.
Examples:
<component name="CamelApplicationComponent">
<option name="active" value="true" />
<option name="stopAtTheEndOfTheWord" value="false" />
</component>
<component name="ConfirmExitApplicationComponent">
<option name="shutdownTimeLimitInMillis" value="2000" />
</component>
<component name="TabSwitchApplicationComponent">
<option name="historyLimit" value="1" />
</component>
-- TimurZambalayev - May 24, 2003 |