mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
[site] running and debugging a plugin
This commit is contained in:
parent
b6c3cb391d
commit
7f12b07e12
@ -10,7 +10,7 @@
|
|||||||
* [Setting Up Development Environment](setting_up_environment.html)
|
* [Setting Up Development Environment](setting_up_environment.html)
|
||||||
* [Creating a Plugin Module](creating_plugin_module.html)
|
* [Creating a Plugin Module](creating_plugin_module.html)
|
||||||
* [Build Number Ranges](build_number_ranges.html)
|
* [Build Number Ranges](build_number_ranges.html)
|
||||||
* [Running a Plugin](running_plugin.html)
|
* [Running and Debugging a Plugin](running_and_debugging_a_plugin.html)
|
||||||
* [Plugin Compatibility with IntelliJ Platform Products](plugin_compatibility.html)
|
* [Plugin Compatibility with IntelliJ Platform Products](plugin_compatibility.html)
|
||||||
* [Plugin Structure](plugin_structure.html)
|
* [Plugin Structure](plugin_structure.html)
|
||||||
* [Architectural Overview](architectural_overview.html)
|
* [Architectural Overview](architectural_overview.html)
|
||||||
|
24
running_and_debugging_a_plugin.md
Normal file
24
running_and_debugging_a_plugin.md
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
---
|
||||||
|
title: Running and Debugging a Plugin
|
||||||
|
---
|
||||||
|
|
||||||
|
# {{ page.title }}
|
||||||
|
|
||||||
|
|
||||||
|
*IntelliJ IDEA* allows you to run and debug a plugin without leaving the IDE.
|
||||||
|
To run or debug the plugin from within *IntelliJ IDEA*, you need a configured special profile (a Run/Debug configuration) that specifies the class to run, VM parameters and other specific options.
|
||||||
|
In most cases, you can use default *Run\/Debug* configuration profiles for your plugin projects.
|
||||||
|
For information on how to change the Run/Debug configuration profile, refer to
|
||||||
|
[Run/Debug Configuration](http://www.jetbrains.com/idea/webhelp/run-debug-configuration.html)
|
||||||
|
and
|
||||||
|
[Run/Debug Configuration: Plugin](http://www.jetbrains.com/idea/webhelp/run-debug-configuration-plugin.html)
|
||||||
|
in *Intellij IDEA* Web Help.
|
||||||
|
Using the IntelliJ IDEA's debugger, you can find out the origin of the run-time errors and exceptions.
|
||||||
|
|
||||||
|
**To debug a plugin**
|
||||||
|
|
||||||
|
* On the main menu, choose *Run \| Debug* or press *Shift + F9*.
|
||||||
|
|
||||||
|
**To run a plugin**
|
||||||
|
|
||||||
|
* On the main menu, choose *Run \| Run* or press *Shift + F10*.
|
Loading…
x
Reference in New Issue
Block a user