Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

intellij plugin develop book [closed]

I want to develop a plugin for intellij , but I find that the resource about that is very little,and there isn't a book about it ,so anyone know about this resource or book ? thank you very much

like image 570
wangchen Avatar asked Jan 15 '13 01:01

wangchen


People also ask

How do I enable IntelliJ plugins?

Press Ctrl+Alt+S to open the IDE settings and select Plugins. and then click Install Plugin from Disk…. Select the plugin archive file and click OK. Click OK to apply the changes and restart the IDE if prompted.

What SDK should I use for IntelliJ?

Java Development Kit (JDK) To develop applications in IntelliJ IDEA, you need a Java SDK (JDK).

Where are IntelliJ plugins installed?

If you installed IntelliJ IDEA via the Toolbox App, the plugins directory will be located in the installation directory. To find the installation directory, open the settings of the IDE instance in the Toolbox App, expand Configuration and look for the Install location field.


1 Answers

This page should help you out:

http://www.jetbrains.com/idea/features/open_api_plugin_manager.html

Essentially you'll need to learn the Open API, which isn't too difficult, and you can visit several of the plugin examples that exist out there to see how others are doing things. Some plugins with source:

  • https://github.com/kinabalu/mysticpaste/tree/master/idea-plugin
  • http://blogs.jetbrains.com/idea/2012/10/check-out-more-than-200-open-source-plugins/ (lots of plugin example code here)
like image 52
kinabalu Avatar answered Oct 03 '22 09:10

kinabalu