generated from JetBrains/intellij-platform-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
21 lines (17 loc) · 1008 Bytes
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
<idea-plugin>
<id>com.github.pipe4.idea.plugin</id>
<name>Pipe4</name>
<vendor>pipe4</vendor>
<depends>com.intellij.modules.platform</depends>
<extensions defaultExtensionNs="com.intellij">
<applicationService serviceImplementation="com.github.pipe4.idea.plugin.services.Pipe4ApplicationService"/>
<projectService serviceImplementation="com.github.pipe4.idea.plugin.services.Pipe4ProjectService"/>
<fileType name="Pipe4 File" implementationClass="com.github.pipe4.idea.plugin.language.Pipe4FileType"
fieldName="INSTANCE" language="Pipe4" extensions="pipe4"/>
</extensions>
<applicationListeners>
<listener class="com.github.pipe4.idea.plugin.listeners.Pipe4ProjectManagerListener"
topic="com.intellij.openapi.project.ProjectManagerListener"/>
</applicationListeners>
</idea-plugin>