How to export code formatting settings in Delphi 2010?

I was looking for a registry. I expect settings in

HKEY_CURRENT_USER\Software\CodeGear\BDS\7.0 

but didn’t find anything. I want to share the settings with my team. Where does Embarcadero store this data?

+3
source share
1 answer

It is saved as an XML file, not in the registry. Take a look at Formatter.config in the Delphi bin \ config directory.

Update:

Delphi XE allows you to import and export formatting configurations in the IDE instead of putting a specific file in a specific folder.

+4
source

Source: https://habr.com/ru/post/1734889/


All Articles