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
The settings are stored in .pref
files in the workspace subdirectory .metadata/.plugins/org.eclipse.core.runtime/.settings
:
.settings
folder.settings
folder with the copied from step 1In 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
.