Platform Actions access from plugin

Answered

Hi, 

 
I have read here and elsewhere, and am not entirely sure whether a plugin has access to invoke any "action" already in-built in the platform. 
 
Also on that, is there documentation listing all the "actions" included in the IDE? (e.g. for PyCharm) 
 
Thanks,
Matan
0
1 comment

Basically you can refer to any existing Action from your plugin. There is no such list (yet), but you can use auto-completion to existing Action IDs in all matching attributes in plugin.xml, e.g.

<action id="dummyJustForCompletion" use-shortcut-of="<caret>"/>
0

Please sign in to leave a comment.