extend Idea Ultimate database plugin Permanently deleted user 创建于 2014年03月31日 08:47 Is it posible to extend database plugin from ultimate version of idea? I want add some functionality (button with appropriate action) to SQL Console editor.Regards,Artem.
Sure. You should search plugins/DatabaseSupport/*.jar files for META-INF/DatabasePlugin.xml and look for some <group id="Console.*"> action groups.
If you're lucky enough you'll be able to inject some custom actions there in your plugin, e.g.:
<action ...>
<add-to-group group-id="Console.XXX" anchor="last"/></aciton>