Opening from command-line in empty folder creates debug.log file. Fixes #20325

This commit is contained in:
Martin Aeschlimann 2017-02-16 16:09:14 +01:00
parent c9992a1122
commit 740799fb53

View file

@ -57,7 +57,7 @@ export function activate(context: ExtensionContext) {
};
// Create the language client and start the client.
let client = new LanguageClient('html', localize('htmlserver.name', 'HTML Language Server'), serverOptions, clientOptions, true);
let client = new LanguageClient('html', localize('htmlserver.name', 'HTML Language Server'), serverOptions, clientOptions);
let disposable = client.start();
context.subscriptions.push(disposable);
client.onReady().then(() => {