Importing IDE Settings
已回答
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?
请先登录再写评论。
Check the ImportSettingsAction.doImport(Path) method implementation.
Perfect, thank you!