Is there a listener to listen when IDEA starts ?
Answered
Do we have any listener that gives a callback for when the IDE starts?
I found com.intellij.openapi.project.ProjectManagerListener that gives a callback for when the user opens project.
Please sign in to leave a comment.
For opening the projects, you can implement the
and add a
inside the <extensions> on the META-INF/plugin.xml
but if you want to execute something after loading the project and after the indexing finishes, you can implement the
and add it inside the <projectListeners>
of META-INF/plugin.xml
In addition, see https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_components.html