Hugo Palma
- Total activity 162
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 43
-
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... -
Created Access to javadoc from library
My use case is simple, i want to access the javadoc of a class that is in a library. So, for this to be possible the library has to have either the javadoc url or file path configure, or the librar... -
Created Providing optional steps with AddSupportStepsProvider
The createAddSupportSteps method return an array of all the steps in the wizard.I have a use case where a step visibility depends on the chosen value on a previous step.Is this possible ?I thought ... -
Created How to find manifest file ?
Any ideas on how i can get hold of every META-INF/MANIFEST.MF file in the module classpath as a PsiFile ?Thanks. -
Created Can't run plugin tests, getting "Repository caches are corrupted"
I've had this problem before, but i've always been able to work around it by doing a clean build or deleting the system folder of IntelliJ. But this time, i'm stuck with it.So, this problem occurs ... -
Created Auto-complete from libraries
When i use auto-completion(CTRL+SPACE) on a class name it only shows the imported classes and the java.lang classes. Is there a way for IDEA to show the list of all classes in the module classpath,... -
Created Indent span tag
AnsweredI can't find a way to indent the span tags in a HTML document. All other tags are indented correctly except span.For example, after reformat i get this portion of the HTML:<table height="100%" w... -
Created HtmlReferenceProvider for tag names ?
Is it possible to provide a reference for a tag name using HtmlReferenceProvider ?I have references for attribute values working just fine, but it seems that if the text range of the reference is t...