Marcin
- Total activity 44
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 14
-
-
Marcin commented, -
Marcin created a post, AnsweredHow simple is to write IntelliJ plugin (remark according documentation)
Developing IntelliJ plugin be like:Oh! Link to source code! JavaDocs will explain me everything! Checking NotificationAction…Ok, lets see Notification::addAction:Yeah, you got me. Who needs docs...... -
Marcin created a post, AnsweredAction on save not run on saveDocument
Hi! I am writing document content (having path and content defined) (in EDT) as:vfsFile.findDocument()?.let { CommandProcessor.getInstance().executeCommand( project, ... -
-
-
-
Marcin created a post, AnsweredProcess resource after created by plugin
My plugin creates resource file in /src/main/resources/ using:WriteCommandAction.runWriteCommandAction(project) { val fileType = FileTypeManager.getInstance().getFileTypeByFileName(ioFile.name) ... -
-
Marcin created a post, AnsweredDetect actions on save
Use case:My plugin handles external file write and undo operations (acting as rest server - not in scope of this issue). File write adds undo “My Plugin - File Write” labeled operation to stack. Af...