vscode-php-intellisense/src/extension.ts

43 lines
1.6 KiB
TypeScript
Raw Normal View History

2016-08-25 15:55:00 +00:00
'use strict';
import * as path from 'path';
2016-09-01 22:33:04 +00:00
import { spawn } from 'child_process';
2016-08-25 15:55:00 +00:00
import { ExtensionContext } from 'vscode';
2016-09-01 22:33:04 +00:00
import { LanguageClient, LanguageClientOptions } from 'vscode-languageclient';
2016-08-25 15:55:00 +00:00
export function activate(context: ExtensionContext) {
// The server is implemented in PHP
const serverPath = context.asAbsolutePath(path.join('vendor', 'felixfbecker', 'language-server', 'bin', 'php-language-server.php'));
2016-09-01 22:33:04 +00:00
const serverOptions = () => {
const childProcess = spawn('php', [serverPath]);
childProcess.stderr.on('data', (chunk: Buffer) => {
console.error(chunk + '');
});
childProcess.stdout.on('data', (chunk: Buffer) => {
console.log(chunk + '');
});
return Promise.resolve(childProcess);
2016-08-25 15:55:00 +00:00
};
// Options to control the language client
let clientOptions: LanguageClientOptions = {
// Register the server for php documents
documentSelector: ['php']
// synchronize: {
// // Synchronize the setting section 'php' to the server
// configurationSection: 'php',
// // Notify the server about file changes to composer.json files contain in the workspace
// fileEvents: workspace.createFileSystemWatcher('**/composer.json')
// }
};
// Create the language client and start the client.
const disposable = new LanguageClient('PHP Language Client', serverOptions, clientOptions).start();
// Push the disposable to the context's subscriptions so that the
// client can be deactivated on extension deactivation
context.subscriptions.push(disposable);
}