How do you \"remove\" or \"copy\" an eclipse plugin from one eclipse install to another? E.g. I have two installs of eclipse, one of which has a plugin installed that I don
As mentioned in my answer to your last question, and since (again) the chosen answer is very poor on the specifics, a plugin lives in:
for eclipse previous to 3.4 (3.2, 3.3)
any other directory provided you define a link by creating a foo.link file inside the links directory of an eclipse installation (you might have to create the [eclipse]\links directory) containing:
path=C:/eclipse/extensions/foobar
With references the foobar plugins, with the following subdirectories:
C:/eclipse/extensions/foobar/eclipse/plugins
C:/eclipse/extensions/foobar/eclipse/features
dropins/foobar/eclipse/plugins and dropins/foobar/eclipse/features, or foobar.zip, with the zip containing eclipse/plugins and eclipse/features)So you should look for a plugin in those directories, and copy them into into the appropriate plugin directory for completing the installation.