Fix ProjectManagerListener scope (#36)

Listeners for topic "com.intellij.openapi.project.ProjectManagerListener" don't work
inside <projectListeners>, only <applicationListeners>.
This commit is contained in:
Eduardo Fonseca 2020-09-25 15:50:42 -03:00 committed by GitHub
parent 1c72407e34
commit 89e756a16f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,8 +12,8 @@
<projectService serviceImplementation="org.jetbrains.plugins.template.services.MyProjectService"/>
</extensions>
<projectListeners>
<applicationListeners>
<listener class="org.jetbrains.plugins.template.listeners.MyProjectManagerListener"
topic="com.intellij.openapi.project.ProjectManagerListener"/>
</projectListeners>
</applicationListeners>
</idea-plugin>