Hi. I'm a little disappointed in how little help ...
# intellij
h
Hi. I'm a little disappointed in how little help I get from IntelliJ after switching to kotlin-dsl. For example this snippet:
Copy code
tasks {
    val moduleTest by existing(Test::class) {
        setForkEvery(1)
    }
}
I'm not able to navigate to the
Test
class or to
setForkEvery
, and I don't get a list of other methods are available besides
setForkEvery
. Is there anything I can do to improve the situation? Posted in #gradle