Marcin
- Total activity 67
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 8
- Subscriptions 21
-
Created Import module as maven or gradle after creation
AnsweredI created module builder in which user decides of project build tool - maven or gradle. Plugin downloads example maven or gradle files and unzip it to project build path.After opening project I nee... -
Created How to create single module wizard step with generic Name and Location? (direct Create, no wizard steps)
AnsweredI want to create wizard step similar to existing generators (Maven / IDE Plugin) with direct “Create” button:For the moment I can add custom options step to display my fields: But still on next ste... -
Created Document changes not flushed when IDE is not focused
AnsweredI have plugin process running as a thread (executeOnPooledThread) and it performs document update using vfsDoc.setText(content)PsiDocumentManager.getInstance(project).commitDocument(vfsDoc)If IDE w... -
Edited Undo not present after vfs.writeText on non edited file
AnsweredI've got simple action which writes file content as:val file = File("/asd/asd/asd/asd.txt") <- (any project file) vfsFile = VfsUtil.findFileByIoFile(file, true) vfsDoc = vfsFile.findDocument() Com...