How can I register the ProjectOpenedCallback function
Answered
Hello,
I want to override the “projectOpened” function from Interface “ProjectOpenedCallback” to implement specific functionality that is triggered when the project is opened. However, I am uncertain where I should register the callback function.
Thanks in advance for your help!
Please sign in to leave a comment.
Hi Niko,
This interface is not an extension point, and I don't see any implementor in our code base.
If you want to execute a code on project opening, see https://plugins.jetbrains.com/docs/intellij/plugin-components.html#project-open
Hi Karol,
thanks for the quick answer. I saw the extension point here.
But I could make it work with the ProjectActivity. So thank you very much for your answer.