Marcin
- 活动总数 67
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 8
- 订阅数 21
-
已编辑于 Not all DynamicPluginListener methods are called
已回答Having DynamicPluginListener implementation as:class CopilotDynamicPluginListener : DynamicPluginListener { private val LOG: Logger = Logger.getInstance(CopilotDynamicPluginListener::class.jav... -
创建于 TypeScript to Java using symbol reference on JSReferenceExpression problem
已回答Having code as:import { HelloWorldService } from 'Frontend/generated/endpoints'; function MainLayout() { HelloWorldService.sayHello("Hello") }I want to be able to navigate to HelloWorldService.... -
已编辑于 TypeScript object method call psi element not found
已回答Having simple TypeScript file:I'm creating reference contributor:<psi.referenceContributor language="TypeScript" implementation="com.vaadin.plugin.endpoints.VaadinTypeScriptReferenceContributor"/>A... -
已编辑于 Conditional display of ExecutorAction
已回答ExecutorAction.update() is not run when popup menu is displayed.I don't want my action to be used for tests. How to achieve this? -
已编辑于 Need to create project directory explicitly before each unit test
已回答I'm using light unit tests with default fixture:class ProjectTest : BasePlatformTestCase() { var file: String? = null @BeforeEach fun setup() { super.setUp() file = "$... -
创建于 How 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...... -
创建于 Action 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, ... -
创建于 Process 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) ... -
创建于 Detect 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... -
已编辑于 How to use GeneratorNewProjectWizardBuilderAdapter for Project create only, not Module?
I've created own project generator based on GeneratorNewProjectWizard and registered in New Project/Module dialog using GeneratorNewProjectWizardBuilderAdapter. Works great for creating new projec...