plugin.coder
- Total activity 77
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 24
- Subscriptions 20
-
Created How to show notification for a few seconds even if the user closes it?
AnsweredCurrently if I show a notification, even if the user clicks anywhere in the Editor, the notification is closed automatically. This means that the user might accidentally click on something when the... -
Created How to include my own RunConfigurationExtension in MavenRunConfiguration?
AnsweredI'd like to extend Maven's Run configuration with another tab. Currently there are 4 tabs: Parameters, General, Runner, Logs. To me it looks like these tabs are hardcoded inside the source code: @N... -
Created How to get the name of PsiAnonymousClass?
AnsweredIn java an Anonymous class has the name parent$number, and I'd like to somehow get that name from PsiAnonymousClass. But both PsiAnonymousClass.getQualifiedName() and PsiAnonymousClass.getNameIdent... -
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...