From 59e6f2cc2f7047bf3990d7463ab546c89eb330da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Steitz?= Date: Sat, 18 Feb 2017 01:29:47 +0100 Subject: [PATCH] Intialize language server with configuration options --- src/extension.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/extension.ts b/src/extension.ts index 6701735..027f460 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -97,7 +97,8 @@ export async function activate(context: vscode.ExtensionContext): Promise configurationSection: 'php' // Notify the server about file changes to composer.json files contain in the workspace // fileEvents: vscode.workspace.createFileSystemWatcher('**/composer.json') - } + }, + initializationOptions: conf.get('intellisense') }; // Create the language client and start the client.