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