Reputation: 3856
I have quite big IDEA project which we incrementally migrate to gradle. I don't want to "import" newly migrated parts right now, but I do want to have IDEA support (syntax highlighting, code completion, etc) for writing gradle scripts. From brief searching it is still not obvious how to get it. Is it possible it all?
Upvotes: 1
Views: 31
Reputation: 32006
As long you have the Groovy plugin installed and enabled, and have *.gradle
listed as a Registered Pattern for "Groovy" in Settings > Editor > File Types you should get groovy features when editing a build.gradle
file.
Upvotes: 2