plugin.coder
- Total activity 77
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 24
- Subscriptions 20
-
Created How to show text next to variables like in Debugging mode?
AnsweredIn 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? -
Edited Plugin Testing - how to compile and run Project inside a heavy test?
AnsweredSo, 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... -
Edited 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... -
Created How to override built-in action's key mapping?
AnsweredCurrently, 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? -
Created How to extend Find in Path with a custom Filter?
AnsweredThe 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? -
Edited How to create similar debugging Tab to what the Chronon plugin does?
AnsweredSo, 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... -
Edited 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... -
Edited Depend on plugin jar or copy sources to custom plugin
AnsweredHi, 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... -
Edited 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... -
Created How to create unit tests for all methods with a single shortcut?
AnsweredHi, 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/...