Hugo Palma
- Total activity 162
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 43
-
Created Toolwindow icon and shortcut
My plugin registers a new toolwindow using the ToolWindowManager.registerToolWindow API.This works fine except for two things:- Although i set the icon in the ToolWindow instance and that icon show... -
Created Exception when creating annotations
I'm getting a weird exception when my annotator creates an annotation. Here's the stack trace:+java.lang.ClassCastException: java.util.ArrayList cannot be cast to [Ljava.lang.Object; at com.intelli... -
Created Generating source code in FacetTypeFrameworkSupportProvider
I have a FacetTypeFrameworkSupportProvider implementation and i would like to generate some classes when the facet is created.So, i overrided the onFacetCreated method and implemented the generatio... -
Created Autocompletion with custom language error
I'm creating a new language but i'm trying to reuse some components from the XML and HTML languages. So i have a simple FileType that extends XmlLikeFileType and that in the constructor creates the... -
Created Link to file location from JTextPane
My plugin adds a toolwindow with a JTextPane in it.How can i create links to file locations from the text in the JTextPane just like what you see in the messages toolwindow when for instance it sho... -
-
Created Functional testing plugins
Hi all,i'm looking for a tool to automate my plugins functional tests as much as possible and i was wondering if anyone has any tips about such applications working with IDEA.It would also be cool ... -
Created Can't get PsiDocumentManager.commitDocument to update PSI
I'm listening to document changes in the fileContentLoaded method of a FileDocumentManagerListener.This works just fine, but the action i want to perform also depends on the PSI representation so i... -
Created Listening to new class events
I was hoping to use the PsiManager.addPsiTreeChangeListener to listen to class creation(or any other PsiFile) events.The problem is that the childAdded method in the listeners are getting called be... -
Created Setting selected editor
I have a file open that has several tabs and i would like to set the selected one.I can get the tabs with:FileEditorManager.getInstance(myProject).getEditors(fileInEditor);How do i change the selec...