How to call exist action

i wanna make a new "navigate test" plugin for idea since "navigate test" for java and python always pop up "create new test" dialog, but in ruby case, old "navigate test" work well. so i wanna enable my plugin only in java and python case, and in ruby case, invoke old one.

so my question is:
how to invoke exist action in idea

addtional question:
is there a good document for openapi? i navigate openapi source with idea, there are only source code, not doc.

0
1 comment

You can call com.intellij.openapi.actionSystem.AnAction#actionPerformed directly to re-use existing Action. Please see https://confluence.jetbrains.com/display/IDEADEV/IntelliJ+IDEA+Action+System

0

Please sign in to leave a comment.