Created
May 1, 2023 16:31
-
-
Save mikehearn/27173c37b8b225f4d0ae6e9a4d213c9c to your computer and use it in GitHub Desktop.
IntelliJ plugin xml for a kotlin scripting plugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<idea-plugin> | |
<id>dev.hydraulic.hshell</id> | |
<name>Hydraulic Shell</name> | |
<vendor email="[email protected]" 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