Home > OS >  Where are formatter profiles stored in Eclipse?
Where are formatter profiles stored in Eclipse?

Time:09-22

Where are formatter profiles stored in Eclipse? I know how to export them, but how can I figure out the path of the currently used one?

CodePudding user response:

The profile is saved as part of the org.eclipse.jdt.ui.prefs preferences file in the workspace .metadata/plugins/org.eclipse.core.runtime/.settings directory.

This is basically a normal Java Properties file, but the contents is very messy.

  • Related