Hello. If I modify the dataframe compiler plugin, ...
# datascience
m
Hello. If I modify the dataframe compiler plugin, is there some trick to get the IDE to respect it? Or is the dataframe compiler plugin bundled with the IDE in such a way that I can't replace it? My code compiles (with my customized version), but it's red in the IDE.
n
Hi! Yes, plugin is bundled in a way that built-in version always substitutes the one from Gradle build. To test such changes in IDEA you need to build intellij from sources with cooperative setup: https://github.com/JetBrains/intellij-community/blob/a44c0b108426adcb81001578ad4374f80e5e1970/plugins/kotlin/docs/cooperative-development/environment-setup.md?plain=1 So that your local changes end up bundled
thank you color 1