Files
kotlin-fork/idea/META-INF/plugin.xml
T
2010-12-13 19:04:03 +03:00

26 lines
905 B
XML

<idea-plugin version="2">
<name>Jet</name>
<description>Jet Language support</description>
<version>1.0</version>
<vendor>JetBrains</vendor>
<application-components>
<!-- Add your application components here -->
</application-components>
<project-components>
<!-- Add your project components here -->
</project-components>
<actions>
<!-- Add your actions here -->
</actions>
<extensions defaultExtensionNs="com.intellij">
<fileTypeFactory implementation="org.jetbrains.jet.lang.JetFileFactory"/>
<lang.braceMatcher language="jet" implementationClass="org.jetbrains.jet.lang.JetPairMatcher"/>
<lang.parserDefinition language="jet" implementationClass="org.jetbrains.jet.lang.parsing.JetParserDefinition"/>
<annotator language="jet" implementationClass="org.jetbrains.jet.lang.annotations.SoftKeywordsAnnotator"/>
</extensions>
</idea-plugin>