Some cleanup

This commit is contained in:
Kolja Lampe
2019-01-27 13:03:47 +01:00
parent 56b4afcdba
commit 492c1c88f4

View File

@@ -34,7 +34,6 @@ export function activate(context: ExtensionContext) {
// Options to control the language client
let clientOptions: LanguageClientOptions = {
// Register the server for plain text documents
documentSelector: [{ scheme: 'file', language: 'elm' }],
synchronize: {
// Notify the server about file changes to '.clientrc files contained in the workspace
@@ -45,7 +44,7 @@ export function activate(context: ExtensionContext) {
// Create the language client and start the client.
client = new LanguageClient(
'elmLanguageServer',
'ELM Language Server',
'Elm Language Server',
serverOptions,
clientOptions
);