You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/gitpod-protocol/data/gitpod-schema.json
+15
Original file line number
Diff line number
Diff line change
@@ -247,6 +247,21 @@
247
247
}
248
248
}
249
249
},
250
+
"jetbrains": {
251
+
"type": "object",
252
+
"description": "Configure JetBrains integration",
253
+
"deprecationMessage": "The 'jetbrains' property is experimental.",
254
+
"additionalProperties": false,
255
+
"properties": {
256
+
"plugins": {
257
+
"type": "array",
258
+
"description": "List of plugins which should be installed for users of this workspace. From the JetBrains Marketplace page, find a page of the required plugin, select 'Versions' tab, click any version to copy pluginId (short name such as org.rust.lang) of the plugin you want to install.",
259
+
"items": {
260
+
"type": "string"
261
+
}
262
+
}
263
+
}
264
+
},
250
265
"experimentalNetwork": {
251
266
"type": "boolean",
252
267
"deprecationMessage": "The 'experimentalNetwork' property is deprecated.",
Copy file name to clipboardExpand all lines: components/ide/jetbrains/backend-plugin/src/main/kotlin/io/gitpod/jetbrains/remote/GitpodProjectManager.kt
0 commit comments