Edu Garcia
- Total activity 46
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 14
-
-
Created File "inspection"
In my plugin, I want to create an "inspection" that checks the filenames in your project to flag potentially invalid ones according to my plugin. My idea was to flag the file with an underline simi... -
Created Inspection and method signature
I'm creating an inspection for IDEA. In my inspection, I override buildVisitor(), return a JavaElementVisitor and implement visitMethodCallExpression:@NotNull @Override public PsiElementVisitor bui... -
Created EditorTextField and selection
Hi.I'm creating an EditorTextField using the following code:Set<EditorCustomization> features = new HashSet<EditorCustomization>(); features.add(SoftWrapsEditorCustomization.ENABLED); features.add(... -
Created References for code strings
Hi.I want to do something similar to what AppCode does with [UIImage imageNamed:@"..."]. When you specify the image name on the @"..." string, Appcode shows a warning if the image doesn't exist. Fu... -
Created API for indenting
Hi.I want to fix this issue: http://youtrack.jetbrains.com/issue/HAXE-354 as it seems it's not going to be fixed in the near future, and I think it's very annoying.I've been taking a look at the co... -
Created Simulator versions
Hi.I'm using the latest EAP (131.144) and I don't seem to find a way of doing the following:I have installed iOS Simulator 5.0, 5.1, 6.0, 6.1 and 7.0. On AppCode, I only see:iPhone retina (3.5 | 4 ... -
Created DOM error checking
Hi.I'm trying to get IDEA to highlight errors in my XML document.According to the "Accessing XML through Intellij IDEA" document, adding @NameValue should be enough for IDEA to highlight duplicates... -
Created Caching on a DOM Converter
Hi thereI'm using the XML DOM on my plugin. I have a Converter for some kind of references, and I'd like to cache some things (like some properties files I've found after doing some calculations on... -
Created PsiReference to PsiFile
Hi.I'm implementing a reference contributor for a custom XML we have:<myElement location="yourFile.png"/>I want "location" to be a reference to a file in your source roots. I already have the Virtu...