jetbrains-plugin-sample icon indicating copy to clipboard operation
jetbrains-plugin-sample copied to clipboard

A sample plugin for jetbrains IDEs that uses an ANTLR grammar for a nontrivial custom language.

Results 7 jetbrains-plugin-sample issues
Sort by recently updated
recently updated
newest added

There is an issue (https://github.com/gradle/gradle/issues/820) with `antlr` plugin used in this project that leads to dependencies pollution.

I thought I'd check this out and run it, but gradle immediately gave a cryptic error message. Googling suggested I upgrade Gradle, so I did. After fixing things here and...

`IdentifierPSINode` is a leaf node in your AST, and it implements `PsiNamedElement`. https://github.com/antlr/jetbrains-plugin-sample/blob/0b8d515b5d38e4240d79d69a5e00c7ead0bf301a/src/main/java/org/antlr/jetbrains/sample/psi/IdentifierPSINode.java#L39 It should not implement `PsiNamedElement`. The [Custom Language tutorial says](https://plugins.jetbrains.com/docs/intellij/references-and-resolve.html#psireference:~:text=While%20the%20referencing%20element%20and%20the%20referenced%20element%20both%20may%20have%20a%20name%2C) > While the referencing element and the...

I have this code: ``` func f() { var s = "abc \n" } ``` The problem is that `"abc \n"` is black (should be green because it is string)....

bug

Hello, Today I have been trying to use this plugin to create a new language for a JetBrains product. I however can't extend the plugin with new keywords. I keep...

Hello Idea says me : CoreASTFactory is scheduled for removal in version 2020.3 It's possible to replace the class "CoreASTFactory" in the class SampleASTFactory ? Thanks

A little bit strange, but the IDEA editor doesn't show any errors for the following code: ``` var b //must have assignment func fun(){ return //must return something } ```...