Edu Garcia
- 活动总数 46
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 14
-
-
创建于 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... -
创建于 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... -
创建于 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(... -
创建于 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... -
创建于 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... -
创建于 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 ... -
创建于 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... -
创建于 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... -
创建于 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...