Plugin Developer Guide
November 5, 2018 ยท View on GitHub
Testing/Debugging the plugin using IntelliJ IDEA
- Go to File -> Open and open the cloned repository using IntelliJ IDEA.

- Import Project from Gradle settings window will be shown. Select the Gradle Home path and select OK.

- From the Gradle projects tool window, run
runIdetask. This will build the plugin and a new IDEA instance will be started with the plugin installed.
If the Gradle projects window is not visible, you can use View -> Tool Windows -> Gradle to go to the Gradle projects tool window.

- In addition to the above method, you can also add a Gradle configuration to Run or Debug the plugin.
-
Go to Run -> Edit Configurations.
-
Add a new Gradle Configuration.

- Select the plugin-intellij project as the Gradle project.

- Add
runIdeto the Tasks.

- Now you can Run or Debug the plugin using the created Gradle configuration very easily.
