Edu Garcia
- 活动总数 46
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 14
-
创建于 Custom CSS properties
Hi,I want to create a plugin that adds some custom css properties, like the existing JavaFX plugin does (with the "-fx-*" properties), and basically the same as discussed here: https://devnet.jetbr... -
创建于 Removing "New Java Class"
Hi,Is there a way of removing or replacing New -> Java Class from a custom plugin module type? In my module, creating a Java class or an HTML file doesn't have any sense, and they always show for s... -
创建于 Grammar Kit "recoverWhile"
I need some help understanding how recoverWhile (from the Grammar Kit plugin) works.In my language, function are defined like:function namespace::name::othername() { }I'm trying to add recovery whe... -
创建于 Processing newlines
Hi,In my custom language (using Grammar-Kit, awesome plugin :)), I have statements that can be finished either by a semicolon or by a newline.The problem is, I can't use the newline token in my gra... -
-
创建于 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...