I’m working on a project in IntelliJ but it keeps doing background operations when I’m editing a build.gradle.kts file. Is is possible to disable this behavior so we could hit this background process only after we save the file?
l
louiscad
02/10/2019, 3:18 PM
@GarouDan Use power save mode 😉
m
Mike
02/10/2019, 4:09 PM
For groovy syntax, turning off auto-import in gradle settings does it. Ide then prompts when there's a change to build.gradle file and you control when it does import.
Hopefully works same for kts variation but I don't use kotlin dsl so can't confirm that.
g
GarouDan
02/10/2019, 4:11 PM
Thanks, it looks like disabling gradle auto-import works for me. Unfortunately the power save mode don’t.