Works on Win 10
This commit is contained in:
@@ -31,7 +31,8 @@ public class BoshLanguageServer extends STS4LanguageServerProcessStreamConnector
|
||||
"application.yml",
|
||||
Arrays.asList(
|
||||
"-Dlsp.lazy.completions.disable=true",
|
||||
"-Dlsp.completions.indentation.enable=true"
|
||||
"-Dlsp.completions.indentation.enable=true",
|
||||
"-noverify"
|
||||
)
|
||||
);
|
||||
|
||||
|
||||
@@ -45,7 +45,8 @@ public class CloudFoundryManifestLanguageServer extends STS4LanguageServerProces
|
||||
"application.yml",
|
||||
Arrays.asList(
|
||||
"-Dlsp.lazy.completions.disable=true",
|
||||
"-Dlsp.completions.indentation.enable=true"
|
||||
"-Dlsp.completions.indentation.enable=true",
|
||||
"-noverify"
|
||||
)
|
||||
);
|
||||
|
||||
|
||||
@@ -31,7 +31,8 @@ public class ConcourseLanguageServer extends STS4LanguageServerProcessStreamConn
|
||||
"application.yml",
|
||||
Arrays.asList(
|
||||
"-Dlsp.lazy.completions.disable=true",
|
||||
"-Dlsp.completions.indentation.enable=true"
|
||||
"-Dlsp.completions.indentation.enable=true",
|
||||
"-noverify"
|
||||
)
|
||||
);
|
||||
|
||||
|
||||
@@ -101,7 +101,10 @@ public abstract class STS4LanguageServerProcessStreamConnector extends ProcessSt
|
||||
StringBuilder classpath = new StringBuilder();
|
||||
classpath.append(languageServerRoot.resolve("BOOT-INF/classes").toFile());
|
||||
classpath.append(File.pathSeparator);
|
||||
classpath.append(languageServerRoot.resolve("BOOT-INF/lib/*").toFile());
|
||||
classpath.append(languageServerRoot.resolve("BOOT-INF/lib").toFile());
|
||||
// Cannot have * in the java.nio.Path on Windows
|
||||
classpath.append(File.separator);
|
||||
classpath.append('*');
|
||||
|
||||
if (runtime.toolsJar != null) {
|
||||
classpath.append(File.pathSeparator);
|
||||
|
||||
Reference in New Issue
Block a user