Importing IDE Settings
Answered
The process of importing IDE settings from a ZIP archive is described here: https://www.jetbrains.com/help/idea/sharing-your-ide-settings.html#import-export-settings
I would like to programmatically import IDE settings as a feature of a plugin, is this possible?
Please sign in to leave a comment.
Check the ImportSettingsAction.doImport(Path) method implementation.
Perfect, thank you!