Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IntelliJ: No autocomplete for Kotlin?

I'm working on a project with Kotlin plugins, but IntelliJ doesn't seem to have autocomplete for Kotlin. Is there any way to enable it or should I just deal with it.

like image 411
SJ19 Avatar asked Sep 25 '22 06:09

SJ19


1 Answers

You broke your Kotlin install by deleting the shipping Kotlin plugin and trying to downgrade (which some very authoritative people said you shouldn't attempt). There are at least 4 Stack Overflow questions covering your issue now including this one.

See also (your other questions):

  • IntelliJ: Kotlin error causes mouse flicker and errors in code

  • How to downgrade Kotlin in Intellij 15

  • IntelliJ (using gradle): Can't find Kotlin plugin even though it's installed

Read those, fix your Kotlin to 1.0.0, and upgrade your project to use Kotlin 1.0.0 dependencies (Kotlin itself and any third party to ensure they are compatible).

Any other Kotlin problems you have before then ARE RELATED to this one. New stack overflow questions just confuses the situation for everyone involved.

like image 142
Jayson Minard Avatar answered Oct 02 '22 14:10

Jayson Minard