Skip to content

Instantly share code, notes, and snippets.

@mikehearn
Created May 1, 2023 16:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikehearn/27173c37b8b225f4d0ae6e9a4d213c9c to your computer and use it in GitHub Desktop.
Save mikehearn/27173c37b8b225f4d0ae6e9a4d213c9c to your computer and use it in GitHub Desktop.
IntelliJ plugin xml for a kotlin scripting plugin
<idea-plugin>
<id>dev.hydraulic.hshell</id>
<name>Hydraulic Shell</name>
<vendor email="contact@hydraulic.software" url="https://hshell.hydraulic.dev">Hydraulic</vendor>
<description><![CDATA[
Hydraulic Shell is a replacement for shell scripting that uses Kotlin.
]]></description>
<depends>com.intellij.modules.platform</depends>
<depends>org.jetbrains.kotlin</depends>
<extensions defaultExtensionNs="com.intellij">
<notificationGroup id="Hydraulic Shell" displayType="BALLOON" key="hshell.notification.name"/>
</extensions>
<extensions defaultExtensionNs="org.jetbrains.kotlin">
<scriptDefinitionsProvider implementation="hydraulic.hshell.intellij.HShellDefinitionProvider"/>
</extensions>
<actions>
<!-- Add your actions here -->
</actions>
</idea-plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment