Reputation: 20391
I work on a couple of large projects and have different workspaces for different projects I'm working on, to help with the speed of searching in Eclipse. I also have other workspaces for the different branches of these works spaces. When I create new workspaces, I notice that I have to update things like display of line numbers, decrease font size, and change of wrapping length.
I'm hoping there is a way to globally change these default values, so each new workspace will automatically get my preferred settings.
Upvotes: 3
Views: 230
Reputation: 7596
Workspacemechanic can record any change you do in Eclipse preferences, and then it can apply those changes in other workspaces that doesn't meet them.
http://code.google.com/a/eclipselabs.org/p/workspacemechanic/
By using workspace mechanic you can effectively override the global default preferences of Eclipse.
I'm using it to keep consistent fonts/color setup between different workspaces.
Upvotes: 3
Reputation: 2811
Some settings can be exported/imported via wizard. Export/Import -> General -> Preferences.
Alot of your settings stored in: ../workspace/.metadata/.plugins/org.eclipse.core.runtime/.settings/*
(i.e.: org.eclipse.ui.editors
contains the settings for line numbers)
You can copy&paste them.
Upvotes: 3