Files
intellijai/src/main/resources/META-INF/plugin.xml
hgranthorner 711334885b Phase 0: strip JetBrains template, register Jai language and file type
- 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
2026-08-04 10:19:11 -04:00

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>