Prashant
- Total activity 41
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 12
-
Created Find groupid for an action
AnsweredHello, in a plugin, is there a way to find the groupid from anActionEvent. Something like this:( e.myActionManager).myId2GroupId.myMap.get(ACTION_ID) All these have private access in ActionManager.... -
Created Add text to search box
AnsweredI am currently opening a new editor like this: FileEditorManager.getInstance(psiElement.getProject()).openFile(virtualFile, true); Is there a way to set some text in the search box for the newly op... -
Created Show image on hover over PsiElement
AnsweredIs it possible to show an image when the mouse is over a PsiElement who's text contains an image filename? -
Created Edit Custom Properties/VM Options grayed out
Is it possible to edit custom properties in the plugin ide window. See screenshot below. -
Edited Subscribe to Diff Editor Close Event
AnsweredIs it possible to listen to the Diff editor close event? I am opening a diff editor like this: DiffManager.getInstance().showDiff(e.getProject(), request); I need to perform some actions when the... -
Created Add checkbox to Diff toolbar
AnsweredHow do I add a checkbox action to the diff toolbar? Thanks -
Created Code Folding for diff view
AnsweredI currently have a SimpleFoldingBuilder working which automatically collapses certain parts of the file. Is it possible to extend this to the diff view as well? -
Created Gradle vs Devkit
AnsweredThere are two ways to create a plugin project. Gradle is the preferred way and this is what I chose. But in this way if I try to follow this tutorial:http://www.jetbrains.org/intellij/sdk/docs/tu... -
Created Extend simple annotator for json files?
AnsweredI am trying to create a plugin which allows me to add annotations to a json file. Annotations in this context simply mean that the file will be parsed for specific text and if the text is found, th... -
Created Plugin to add a line marker in the gutter
I am simply trying to create a plugin which adds some kind of marker for a section of code in the gutter. This will be for the default editor and the diff editor. Can someone provide a simple examp...