mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2026-03-02 03:39:24 +00:00
Use "JetBrains Marketplace" name in docs and comments
This commit is contained in:
11
src/main/kotlin/org/jetbrains/plugins/template/MyAction.kt
Normal file
11
src/main/kotlin/org/jetbrains/plugins/template/MyAction.kt
Normal file
@@ -0,0 +1,11 @@
|
||||
package org.jetbrains.plugins.template
|
||||
|
||||
import com.intellij.openapi.actionSystem.AnAction
|
||||
import com.intellij.openapi.actionSystem.AnActionEvent
|
||||
|
||||
class MyAction : AnAction("My Action") {
|
||||
override fun actionPerformed(p0: AnActionEvent) {
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
}
|
||||
@@ -15,4 +15,10 @@
|
||||
<applicationListeners>
|
||||
<listener class="org.jetbrains.plugins.template.listeners.MyApplicationActivationListener" topic="com.intellij.openapi.application.ApplicationActivationListener"/>
|
||||
</applicationListeners>
|
||||
|
||||
<actions>
|
||||
<action class="org.jetbrains.plugins.template.MyAction" id="MyAction">
|
||||
<add-to-group group-id="StructureViewPopupMenu" />
|
||||
</action>
|
||||
</actions>
|
||||
</idea-plugin>
|
||||
|
||||
Reference in New Issue
Block a user