Hugo Palma

- Total activity 209
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 65
-
Hugo Palma created a post, Multi-tabbed editor
I'm trying to add a feature to my plugin that allows the user to edit two files in one tabbed editor. For it to open this edit the user just has to click on some node on the project view panel.To g... -
Hugo Palma created a post, Not getting quotes with custom CompletionData
I've got a very simple implementation of HtmlCompletionData. This works just fine except for the fact that when i select any attribute that is contributed from my CompletionData IDEA doesn't genera... -
-
Hugo Palma created a post, Getting hold a new TextEditor instance
Any ideas on how i can get a new instance of a TextEditor to return in the createEditor method of a FileEditorProvider implementation ? -
Hugo Palma created a post, Running tests with Maven2
I'm using the new testing framework and i'm trying to run my tests from maven2. I have the surefire configure like so: maven-surefire-plugin 2.8-SNAPSHOT ... -
Hugo Palma created a post, API for extending views
I would like to extend the "Java EE: Structure" view to display an aditional type of modules with a given structure. Is this possible ?If not, is it at least possible to create a new type of view a... -
Hugo Palma created a post, Custom tag navigation
I'm using a custom implementation of PsiReferenceProvider to provide navigation from HTML files. The problem is that i only seem to be able to provide navigation from the parts of the HTML where ID... -
Hugo Palma created a post, XmlTag.getAttribute() problem
I'm getting a strange behaviour from the method XmlTag.getAttribute(String name, String namespace), but as i'm not sure this is a bug i wanted to run this by you folks.My page is: <html xmlns:t="ht... -
Hugo Palma created a post, ColorSettingPage for annotator highlighting
I've created an annotator that highlights some elements of Java and HTML files.Now i want to provide a ColorSettingPage so that the user can configure the display colors. This seems to work fine ex... -
Hugo Palma created a post, Create new field with name as configured in code style
I'm creating a new field using:PsiManager.getElementFactory().createField(fieldName), psiType);This works fine, but i would like for the name of the created field to include the name prefix and suf...