Marcin
- 活动总数 67
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 8
- 订阅数 21
-
创建于 Import module as maven or gradle after creation
已回答I 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... -
创建于 How to create single module wizard step with generic Name and Location? (direct Create, no wizard steps)
已回答I 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... -
创建于 Document changes not flushed when IDE is not focused
已回答I 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... -
已编辑于 Undo not present after vfs.writeText on non edited file
已回答I'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...