We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f0ea7e commit ff69196Copy full SHA for ff69196
build.gradle.kts
@@ -111,4 +111,14 @@ tasks {
111
// https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel
112
channels.set(listOf(properties("pluginVersion").split('-').getOrElse(1) { "default" }.split('.').first()))
113
}
114
+
115
+ runIde {
116
+ autoReloadPlugins.set(true)
117
+ }
118
119
+ buildSearchableOptions {
120
+ // disable when is local development
121
+ // see: https://plugins.jetbrains.com/docs/intellij/ide-development-instance.html#enabling-auto-reload
122
+ enabled = System.getenv("CI") != null
123
124
0 commit comments