plugin.coder

- Total activity 77
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 24
- Subscriptions 20
-
plugin.coder commented, -
-
plugin.coder created a post, AnsweredHow to show notification for a few seconds even if the user closes it?
Currently 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... -
-
plugin.coder created a post, AnsweredHow to include my own RunConfigurationExtension in MavenRunConfiguration?
I'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... -
-
plugin.coder created a post, AnsweredHow to get the name of PsiAnonymousClass?
In 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... -
plugin.coder commented, -
plugin.coder created a post, AnsweredHow 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? -