Fire Window Actions?

Answered

Hello 🙂


I'm trying to write a simple IntelliJ plugin for my keyboard.
Does anyone know how to fire Window Actions for the editor to change tabs for example.
In the Keymap under Main Menu > Window > Editor Tabs  there is a  "Select Next Tab" shortcut.
How do I fire that action through java code? 

0
1 comment

Skomvaktspam,

Such actions are not handled as regular AnAction implementations. Shortcuts are assigned to the PrevNextActionsDescriptor which is installed on tabbed pane in TabbedPaneWrapper.

1

Please sign in to leave a comment.