ceylon-ide-intellij
ceylon-ide-intellij copied to clipboard
IntelliJ Plugin for Ceylon
Java, Groovy, and Kotlin projects can be built from a Gradle specification. Ceylon has a Gradle plugin, but creating a project using it is not integrated with the IDEA plugin...
There needs to be a way to exclude packages or declarations from completion results, and perhaps also from other result lists. (The eclipse IDE supports global filters along with 3...
This is a pretty minor thing, and not a priority, but it's kinda cute.
``` ceylon shared actual PsiNameIdentifierOwner? gotoJavaNode(Declaration declaration) { value qn = declaration.qualifiedNameString.replace("::", "."); (1) return doWithIndex(project, () { value facade = JavaPsiFacade.getInstance(project); (2) value scope = GlobalSearchScope.allScope(project); if (exists psi...
When a project is imported, every `.ceylon` file is scanned for declarations, which are added to the project's index for later use. The problem is, the parser does not build...