pull/431/merge
Robert LU 2019-12-28 15:44:57 +05:30 committed by GitHub
commit 7f85975a64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

View File

@ -115,6 +115,17 @@
],
"default": null,
"description": "The path to a PHP 7+ executable."
},
"php.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the PHP language server.",
"scope": "window"
}
}
}

View File

@ -128,7 +128,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
}
// Create the language client and start the client.
client = new LanguageClient('PHP Language Server', serverOptions, clientOptions)
client = new LanguageClient('php', 'Language Support for PHP', serverOptions, clientOptions)
const disposable = client.start()
// Push the disposable to the context's subscriptions so that the