Eclipse syntax highlighting preferences save and restore - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T02:45:23Z http://stackoverflow.com/feeds/question/372837 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/372837/eclipse-syntax-highlighting-preferences-save-and-restore 5 Eclipse syntax highlighting preferences save and restore Frederic Daoud 2008-12-16T21:35:14Z 2009-06-25T21:05:37Z <p>I spend some time customizing the colors for syntax highlighting in Eclipse (Java, JSP, HTML, CSS, etc.) but whenever I try to export these settings via File|Export|General|Preferences and reimport them, the settings never completely get imported back. Some colors are restored and others are left unchanged, leaving me in an 'in between' state - very frustrating.</p> <p>I'm using Eclipse 3.4 Ganymede, by the way.</p> <p>Has anyone found a reliable way to save and restore Eclipse syntax highlighting settings?</p> http://stackoverflow.com/questions/372837/eclipse-syntax-highlighting-preferences-save-and-restore/373040#373040 3 Answer by VonC for Eclipse syntax highlighting preferences save and restore VonC 2008-12-16T22:39:06Z 2008-12-16T22:39:06Z <p>I would export the preference before modifying the color, and then after.</p> <p>That way, you would be able to isolate the specific rules of an eclipse preference file into one smaller file and:</p> <ul> <li>check if some colors not restored are indeed represented by a rule</li> <li>the import of a smaller preference has any effect on the previously unchanged settings.</li> </ul> <p>That kind of strategy can be further refined into several small settings files (one for Java, one for JSP, HTML, CSS, ...), in order to better analyzing the potential side-effects when re-importing those settings.</p> http://stackoverflow.com/questions/372837/eclipse-syntax-highlighting-preferences-save-and-restore/598146#598146 3 Answer by Frederic Daoud for Eclipse syntax highlighting preferences save and restore Frederic Daoud 2009-02-28T15:19:24Z 2009-02-28T15:19:24Z <p>I finally figured out how to do this.</p> <p>I just wanted to mention beforehand that I did try to start with a fresh Eclipse install, export the preferences to a .epf file, change just one single setting, export again, and compare the files. To my surprise, trying to import settings from a minimal .epf file did not work reliably either.</p> <p>The solution that worked for me was to copy these files: {eclipse workspace directory}/.metadata/.plugins/.org.eclipse.core.runtime/.settings/*.prefs</p> <p>I tried a fresh Eclipse install on another machine and after copying those files over, all my settings were restored perfectly.</p> http://stackoverflow.com/questions/372837/eclipse-syntax-highlighting-preferences-save-and-restore/908781#908781 1 Answer by unknown (google) for Eclipse syntax highlighting preferences save and restore unknown (google) 2009-05-26T03:07:10Z 2009-05-26T03:07:10Z <p>I have deleted recently changed *.prefs file from the following dreictory \myworkspace.metadata.plugins\org.eclipse.core.runtime.settings\ and imported existing exported preference.</p> <p>I am the first person, who answer for this question as per my knowledge :), Cause even I struggled lot.</p> <p>Thanks</p> http://stackoverflow.com/questions/372837/eclipse-syntax-highlighting-preferences-save-and-restore/1046266#1046266 1 Answer by Oliver for Eclipse syntax highlighting preferences save and restore Oliver 2009-06-25T21:05:37Z 2009-06-25T21:05:37Z <p>Eclipse CDT stores 'Syntax coloring' in the file <em>org.eclipse.cdt.ui.prefs</em></p> <p>This is located for example here: *C:\eclipse\workspace.metadata.plugins\org.eclipse.core.runtime.settings\*</p> <p>Copy and paste over the top of the one in your new eclipse instance. This worked for me when moving from 3.4 to 3.5</p>