Edu Garcia
- Total activity 46
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 14
-
Created 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... -
Created 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... -
Created 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... -
Created 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... -
-
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...