rust/editors/code/src/server.ts

38 lines
1.1 KiB
TypeScript
Raw Normal View History

2018-10-07 15:59:02 -05:00
import * as lc from 'vscode-languageclient';
2018-10-07 15:44:25 -05:00
2018-10-07 15:59:02 -05:00
import { Config } from './config';
2018-10-08 13:55:22 -05:00
import { Highlighter } from './highlighting';
2018-10-07 15:44:25 -05:00
export class Server {
2018-10-07 15:59:02 -05:00
public static highlighter = new Highlighter();
public static config = new Config();
public static client: lc.LanguageClient;
2018-10-08 13:55:22 -05:00
public static start(notificationHandlers: Iterable<[string, lc.GenericNotificationHandler]>) {
2018-10-07 15:59:02 -05:00
const run: lc.Executable = {
command: 'ra_lsp_server',
options: { cwd: '.' },
};
const serverOptions: lc.ServerOptions = {
2018-10-07 15:44:25 -05:00
run,
2018-10-07 15:59:02 -05:00
debug: run,
2018-10-07 15:44:25 -05:00
};
2018-10-07 15:59:02 -05:00
const clientOptions: lc.LanguageClientOptions = {
2018-10-07 15:44:25 -05:00
documentSelector: [{ scheme: 'file', language: 'rust' }],
};
Server.client = new lc.LanguageClient(
'ra-lsp',
'rust-analyzer languge server',
serverOptions,
clientOptions,
);
Server.client.onReady().then(() => {
2018-10-08 13:55:22 -05:00
for (const [type, handler] of notificationHandlers) {
Server.client.onNotification(type, handler);
}
2018-10-07 15:59:02 -05:00
});
2018-10-07 15:44:25 -05:00
Server.client.start();
}
}