How to get corresponding ideavim action name for an action?

71 views Asked by At

How can I get corresponding ideavim action name for a particular action? For example, in the screenshot, I want to find corresponding ideavim action name, so that I could map using a vim keybinding. map <leader>f <action> <action-name-here> enter image description here

actionlist for reference: enter image description here

1

There are 1 answers

0
Mehul Pamale On

We can use the keymapping to see the one to one relation between idea action and ideavim action

For example: enter image description here

In this screenshot, we can see keymapping is control+shift+down (If you don't have any keybinding set, then add a keybinding temporarily and later remove it, if you want to). You should be able to get the same keybinding in :actionlist as well (see using actionlist). Search for <C-S-Down> or case insensitive <c-s-down>, using :actionlist <c-s-down> ideavim command, and you should be able to get the corresponding ideavim command.

enter image description here