List of built in action ID's?

I wonder if somewhere there is a list of built-in action ID's, like
ConvertToInstanceMethod. Currently my workaround is to define custom key mapping
for an action, then look at the saved keymaps xml file.

评论操作 固定链接

Hello Keith,

KL> I wonder if somewhere there is a list of built-in action ID's, like
KL> ConvertToInstanceMethod. Currently my workaround is to define custom
KL> key mapping for an action, then look at the saved keymaps xml file.

idea/ActionManager.xml in resources.jar

--
Dmitry Jemerov
Software Developer
JetBrains, Inc.
http://www.jetbrains.com
"Develop with pleasure!"


0
评论操作 固定链接

Thanks. I think this list should be posted online somewhere on plugin dev pages.

Dmitry Jemerov (JetBrains) wrote:

Hello Keith,

KL> I wonder if somewhere there is a list of built-in action ID's, like
KL> ConvertToInstanceMethod. Currently my workaround is to define custom
KL> key mapping for an action, then look at the saved keymaps xml file.

idea/ActionManager.xml in resources.jar

0
评论操作 固定链接

Seems to be in platform/platform-resources/src/idea/PlatformActions.xml (IntelliJ 11 CE)

0
评论操作 固定链接

This is not the complete list of action IDs. The registration of actions is spread over multiple .xml files.

0
评论操作 固定链接

I was also looking for this and ended up creating https://github.com/centic9/IntelliJ-Action-IDs with a published page of found ActionIds at https://centic9.github.io/IntelliJ-Action-IDs/

0
评论操作 固定链接

You could install the IdeaVim plugin and run:

:actionlist
1

请先登录再写评论。