Find eclipse setting name to set it in plugin_customization.ini

后端 未结 1 828
栀梦
栀梦 2020-12-12 02:56

I want to add some default values for an eclipse plugin delivered as a whole eclipse product through plugin_customization.ini.

If I want by default to

相关标签:
1条回答
  • 2020-12-12 03:27

    The settings are stored in .pref files in the workspace subdirectory .metadata/.plugins/org.eclipse.core.runtime/.settings:

    1. Before starting your application make a copy of the .settings folder
    2. Start your application, change the setting and then exit the application
    3. Compare the current .settings folder with the copied from step 1

    In your case, disabling spelling will add the line spellingEnabled=false to org.eclipse.ui.editors.prefs, so the line for plugin_customization.ini you are looking for is org.eclipse.ui.editors/spellingEnabled=false.

    0 讨论(0)
提交回复
热议问题