File tree Expand file tree Collapse file tree 4 files changed +27
-22
lines changed
components/ide/jetbrains/backend-plugin
kotlin/io/gitpod/jetbrains/remote Expand file tree Collapse file tree 4 files changed +27
-22
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ platformVersion=213-EAP-SNAPSHOT
16
16
platformDownloadSources =true
17
17
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
18
18
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
19
- platformPlugins =
19
+ platformPlugins =Git4Idea
20
20
# Opt-out flag for bundling Kotlin standard library.
21
21
# See https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library for details.
22
22
kotlin.stdlib.default.dependency =false
Original file line number Diff line number Diff line change
1
+ package io.gitpod.jetbrains.remote
2
+
3
+ import com.intellij.openapi.Disposable
4
+ import com.intellij.openapi.components.Service
5
+ import git4idea.config.GitVcsApplicationSettings
6
+
7
+ @Service
8
+ class GitpodManager : Disposable {
9
+
10
+ init {
11
+ GitVcsApplicationSettings .getInstance().isUseCredentialHelper = true
12
+ }
13
+
14
+ override fun dispose () {
15
+
16
+ }
17
+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11
11
12
12
<!-- Product and plugin compatibility requirements -->
13
13
<!-- https://plugins.jetbrains.com/docs/intellij/plugin-compatibility.html -->
14
- <depends >com.intellij.modules.platform</depends >
14
+ <dependencies >
15
+ <plugin id =" com.intellij.modules.platform" />
16
+ <plugin id =" Git4Idea" />
17
+ </dependencies >
18
+
19
+ <extensions defaultExtensionNs =" com.intellij" >
20
+ <applicationService serviceImplementation =" io.gitpod.jetbrains.remote.services.HeartbeatService" preload =" true" />
21
+ <applicationService serviceImplementation =" io.gitpod.jetbrains.remote.GitpodManager" preload =" true" />
22
+ </extensions >
15
23
16
- <applicationListeners >
17
- <listener class =" io.gitpod.jetbrains.remote.listeners.MyApplicationActivationListener"
18
- topic =" com.intellij.openapi.application.ApplicationActivationListener" />
19
- </applicationListeners >
20
24
</idea-plugin >
You can’t perform that action at this time.
0 commit comments