Skip to content

Commit bb8c8a6

Browse files
committed
Update USAGE.md
Add "Troubleshooting of common problems" section
1 parent f945d32 commit bb8c8a6

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

USAGE.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,3 +132,21 @@ Some things to note when using other plugins with the Save Actions plugin:
132132

133133
- **idea.log**: The log file the save actions plugin writes in. It contains debug information, prefixed with `software.xdev.saveactions.SaveActionManager`. If you are using default locations, it would be in `~/.IntelliJIdeaVERSION/system/log/idea.log`.
134134
- **saveactions_settings.xml**: The settings file is saved by project in the `.idea` folder. That file can be committed in git thus shared in your development team. If you are using the default locations, it would be in `~/IdeaProjects/PROJECT_NAME/.idea/saveactions_settings.xml`
135+
136+
## Troubleshooting of common problems
137+
138+
### "Conflicting component name 'SaveActionSettings': class ``com.dubreuia.model.Storage`` and class ``software.xdev.saveactions.model.Storage``"
139+
140+
The problem only happens when the [old/deprecated/forked plugin](https://github.com/dubreuia/intellij-plugin-save-actions) plugin is also installed.
141+
142+
You can fix this by uninstalling the deprecated plugin.
143+
144+
### "AWT events are not allowed inside write action" occurs when applying Save Actions
145+
146+
This usually indicates that some action causes a UI dialog to show up.<br/>However as the actions are run in the background the dialog can't be shown and the crash occurs.
147+
148+
You can work around this problem by finding out what causes the dialog (e.g. by trying to temporarily disabling Save Actions and saving the files normally) and stop it from being displayed.
149+
150+
### "Execute Save Actions on multiple files" is not working
151+
152+
Make sure that you enabled "Activate save actions on batch" in the settings.

0 commit comments

Comments
 (0)