...
In workspace mechanic, right-click on the icon and select "Preference Recorder > Start Recording" to record your own preference changes. Once you are finished, select "Stop Recording" and save the resulting file to your ~/.eclipse/mechanic folder created above. Use the .epf file extension for your preference change to be picked up when you open other workspaces.
If you have a standard set of projects that you import into every workspace, you can install our new project importer workspace mechanic plugin and automate that process. Just drop .proj config files into ~/.eclipse/mechanic and restart.
Install Site: http://webobjects.mdimension.com/mechanic/
~/.eclipse/mechanic/YourFile.proj Format:
Code Block |
---|
# @title the title of your task
# @description the description of your task
# @reconcile true or false; reconcile true means that all of the discovered projects are checked every time, false means it does one initial installation and then never checks for changes
/Path1
/Path2
/Path3
|
Example 1:
Code Block |
---|
# @title A Bunch of Projects
# @description Import a bunch of projects into this workspace
# @reconcile true
/Absolute/Path/To/Projects
|
Example 2:
Code Block |
---|
# @title Relative Projects
# @description Import a bunch of projects based on a relative path
# @reconcile true
../RelativePathContainingProjects
|
Example 3:
Code Block |
---|
# @title Individual Projects
# @description Import Wonder 2.0/5.4 into this workspace
# @reconcile true
/Path/To/Project1
/Path/To/Project2
/Path/To/FolderContainingProjects
|