5

Is it possible to call Intellij IDE actions with IdeaVim plugin (via some bindings maybe)?

For example:

:runfile

Will run current Java class.

I know about Quick Action Menu Cmd+Shift+A, but I want to use IDE in Vim style.

Sonique
  • 6,670
  • 6
  • 41
  • 60

1 Answers1

14

Yes, you can use :action and :actionlist commands.

Andrey Vlasovskikh
  • 16,489
  • 7
  • 44
  • 62
  • 3
    Cool! `:action Run` works perfectly! Now I just wonder about shortcuts for moving the cursor to and from the console and hiding/opening it. – Thomas Ahle May 25 '16 at 15:04