Allow quick fixes

This commit is contained in:
BoykoAlex
2017-09-25 18:15:59 -04:00
parent cb087c7064
commit 37a84a1449
2 changed files with 13 additions and 2 deletions

View File

@@ -20,6 +20,17 @@ export class JarLanguageClient extends AutoLanguageClient {
this.serverLauncherJar = serverLauncherJar;
}
getInitializeParams(projectPath, process) {
const initParams = super.getInitializeParams(projectPath, process);
initParams.capabilities = {
workspace: {
executeCommand: {
}
}
};
return initParams;
}
startServerProcess () {
// //TODO: Remove when debugging is over
atom.config.set('core.debugLSP', true);

View File

@@ -1,6 +1,6 @@
{
"name": "pivotal-atom-languageclient-commons",
"version": "0.0.8",
"version": "0.0.10",
"description": "Atom language client commons for STS4 language servers",
"repository": "https://github.com/spring-projects/sts4",
"license": "MIT",
@@ -8,7 +8,7 @@
"atom": ">=1.17.0"
},
"dependencies": {
"atom-languageclient": "0.6.2",
"atom-languageclient": "0.6.4",
"decompress": "^4.2.0",
"portfinder": "^1.0.13",
"remote-file-size": "^3.0.3",