Commit d94b31b 1 parent 32d689a commit d94b31b Copy full SHA for d94b31b
File tree 3 files changed +8
-3
lines changed
jdtls.ext/com.microsoft.gradle.bs.importer/src/com/microsoft/gradle/bs/importer
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ private String generateRandomPipeName() {
129
129
130
130
private void sendImporterPipeName (String pipeName ) {
131
131
JavaLanguageServerPlugin .getInstance ().getClientConnection ()
132
- .sendNotification ("gradle .onWillImporterConnect" , pipeName );
132
+ .sendNotification ("_gradle .onWillImporterConnect" , pipeName );
133
133
}
134
134
135
135
private void attemptConnection (File pipeFile ) throws IOException {
Original file line number Diff line number Diff line change 36
36
" workspaceContains:**/gradlew" ,
37
37
" workspaceContains:**/gradlew.bat" ,
38
38
" workspaceContains:build.gradle" ,
39
+ " workspaceContains:*/build.gradle" ,
39
40
" workspaceContains:settings.gradle" ,
41
+ " workspaceContains:*/settings.gradle" ,
40
42
" workspaceContains:build.gradle.kts" ,
41
- " workspaceContains:settings.gradle.kts"
43
+ " workspaceContains:*/build.gradle.kts" ,
44
+ " workspaceContains:settings.gradle.kts" ,
45
+ " workspaceContains:*/settings.gradle.kts" ,
46
+ " onCommand:_gradle.onWillImporterConnect"
42
47
],
43
48
"main" : " ./dist/index.js" ,
44
49
"contributes" : {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import * as vscode from "vscode";
4
4
import * as path from "path" ;
5
5
import { sendInfo } from "vscode-extension-telemetry-wrapper" ;
6
6
7
- export const ON_WILL_IMPORTER_CONNECT = "gradle .onWillImporterConnect" ;
7
+ export const ON_WILL_IMPORTER_CONNECT = "_gradle .onWillImporterConnect" ;
8
8
9
9
/**
10
10
* Receive the pipe name from Java jdt.ls importer, generate named pipe file and
You can’t perform that action at this time.
0 commit comments