How do you disable the `kotlin.k2.only.bundled.com...
# compiler
c
How do you disable the
kotlin.k2.only.bundled.compiler.plugins.enabled
option on OSX? There's no registry 😕
✅ 1
y
Turn on internal mode and then it's accessible in Tools -> Internal Actions
Long form answer: https://kotlinlang.slack.com/archives/C7L3JB43G/p1743774155637819?thread_ts=1743539408.283709&cid=C7L3JB43G TL;DR:
1. Start the IDE.
2. From the main menu, select Help | Edit Custom Properties.... This selection opens the idea.properties file. If it does not exist, the IDE will prompt to create one.
3. Add the line shown below to the idea.properties file:
4. idea.is.internal=true
5. Save the idea.properties file and restart the IDE.
6. The Internal Actions menu is now available in Tools | Internal Actions.
Then go to Tools | Internal Actions | Registry, or simply Search Everywhere for registry, and you can then look for the flag and enable it
c
Thanks! Trying it now
It's working, thank you!
🎉 1