Is code completion for C libraries broken in the K...
# kotlin-native
n
Is code completion for C libraries broken in the Kotlin 1.3.61 IntelliJ plugin? Using the following in the build.gradle.kts file:
Copy code
// ...
        compilations.getByName("main") {
            cinterops.create("ncurses") {
                includeDirs("-L${System.getProperty("user.home")}/ncurses-6.1/include")
            }
        }
// ...
Would a symbolic link to a header file break code completion?
Forgot to do a Gradle refresh in IntelliJ 🙃. Would be nice if IntelliJ would automatically refresh Gradle every time C interop changes in a Kotlin Native project.