Platform Actions access from plugin

已回答

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

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

请先登录再写评论。