ceylon-ide-intellij icon indicating copy to clipboard operation
ceylon-ide-intellij copied to clipboard

IntelliJ Plugin for Ceylon

Results 91 ceylon-ide-intellij issues
Sort by recently updated
recently updated
newest added

=> implement a `QualifiedNameProvider`

t-feature

Left over from #119.

t-feature

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...

t-feature

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...

t-feature

This is a pretty minor thing, and not a priority, but it's kinda cute.

t-feature

``` 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...

t-bug
c-debug

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...

t-enhancement