plugin.coder
- 活动总数 77
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 24
- 订阅数 20
-
创建于 How to show text next to variables like in Debugging mode?
已回答In debugging mode, when a breakpoint is hit, the value of variables is shown next to them and variables become clickable. How to do this in my plugin? -
已编辑于 Plugin Testing - how to compile and run Project inside a heavy test?
已回答So, my plugin uses a custom ProgramRunner and I'd like to write a test for it. To do that, I created a testData directory with a sample project. Now I'd like to load that project, compile it and ru... -
已编辑于 How to resume execution immediately after breakpoint event?
I have registered my own DebugProcessListener listeners which fire when a breakpoint is hit. What I'd like to do is to extract all the information(such as variables, call stack etc.) and resume exe... -
创建于 How to override built-in action's key mapping?
已回答Currently, if I have an action in my plugin which has a key mapping which is already used by a built-in Action in IDEA, it is ignored. How to override the built-in action with my action? -
创建于 How to extend Find in Path with a custom Filter?
已回答The current Find in Path action has some filtering options like: In comments, In String Literals etc. How can I add my own filters using a custom plugin? -
已编辑于 How to create similar debugging Tab to what the Chronon plugin does?
已回答So, the Chronon plugin records the execution of a program and saves it to a file....which can be opened later on and the execution history is shown in a Debugger-like Tab: I am developing a plugin... -
已编辑于 Is it possible to get the process id of the java process that is currently running in the run dialog?
I'd like to attach a Java agent to the running Java project in the IDE dynamically. To do that I have to find the ID of that process, then: VirtualMachine vm = VirtualMachine.attach(ID); How to fin... -
已编辑于 Depend on plugin jar or copy sources to custom plugin
已回答Hi, I'm developing a plugin and I am using the junit-rt.jar plugin from Intellij IDEA. I am using some methods from classes present in this jar but some of these methods are private. My question is... -
已编辑于 Debug IDEA plugin dependency
Hi, I'm developing a plugin which needs the junit runner built-in plugin as dependency. So I included the idea-junit.jar, junit-rt.jar and resources_en.jar files into my plugin project and then pla... -
创建于 How to create unit tests for all methods with a single shortcut?
已回答Hi, After pressing ALT + ENTER, a window is shown where I can select individual methods for which I want to create unit tests. But how do I create a test method for all of them with a single click/...