- delete demo tool window + message bundle, rewrite plugin.xml metadata - add JaiLanguage, JaiFileType, file icon, JaiTokenTypes (from the compiler's own lexer: modules/Jai_Lexer/module.jai) - add ./jaitest: runs tests and reports the JUnit XML, not just the exit code - ignore .kotlin
26 lines
719 B
XML
26 lines
719 B
XML
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
|
|
<idea-plugin>
|
|
<id>dev.hgh.intellijai</id>
|
|
|
|
<name>Jai</name>
|
|
|
|
<vendor>hgh</vendor>
|
|
|
|
<description><![CDATA[
|
|
Support for the <b>Jai</b> programming language.<br/>
|
|
Syntax highlighting for <code>.jai</code> files.
|
|
]]></description>
|
|
|
|
<depends>com.intellij.modules.platform</depends>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<fileType
|
|
name="Jai"
|
|
implementationClass="dev.hgh.jai.JaiFileType"
|
|
fieldName="INSTANCE"
|
|
language="Jai"
|
|
extensions="jai"/>
|
|
</extensions>
|
|
|
|
</idea-plugin>
|