mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
Bumps org.jetbrains.intellij from 1.5.0 to 1.5.1. --- updated-dependencies: - dependency-name: org.jetbrains.intellij dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Run Configuration Demo 
Reference: Run Configurations in IntelliJ SDK Docs
Quickstart
Run Configuration example project provides an implementation of the com.intellij.configurationType
extension point responsible for adding new options for the Run/Debug Configurations.
In this example, a new Demo configuration is added together with ConfigurationFactory
instance that collects run/debug properties - scriptName
in this case.
Extension Points
Name | Implementation | Extension Point Class |
---|---|---|
com.intellij.configurationType |
DemoRunConfigurationType | ConfigurationType |
Reference: Plugin Extension Points in IntelliJ SDK Docs