-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.ts
65 lines (57 loc) · 1.69 KB
/
extension.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import * as path from 'path';
import * as vscode from 'vscode';
import {
LanguageClient,
LanguageClientOptions,
ServerOptions,
TransportKind
} from 'vscode-languageclient/node';
let client: LanguageClient;
export function activate(context: vscode.ExtensionContext) {
let config = vscode.workspace.getConfiguration();
let serverFileName = config.get("lsp4spl.executable");
if (typeof serverFileName !== "string") {
vscode.window.showErrorMessage("LSP4SPL: Server executable is not configured");
return;
}
let runExecutable: string = serverFileName;
let debugExecutable = context.asAbsolutePath(
path.join('..', '..', 'target', 'debug', 'lsp4spl')
);
let logFile = context.asAbsolutePath(
path.join('..', '..', 'lsp4spl.log')
)
// If the extension is launched in debug mode then the debug server options are used
// Otherwise the run options are used
let serverOptions: ServerOptions = {
run: {
command: runExecutable,
transport: TransportKind.stdio,
},
debug: {
command: debugExecutable,
transport: TransportKind.stdio,
args: ['--log', logFile],
},
};
// Options to control the language client
let clientOptions: LanguageClientOptions = {
// Register the server for plain text documents
documentSelector: [{ scheme: 'file', language: 'spl' }],
};
// Create the language client and start the client.
client = new LanguageClient(
'lsp4spl',
'LSP4SPL',
serverOptions,
clientOptions
);
// Start the client. This will also launch the server
client.start();
}
export function deactivate(): Thenable<void> | undefined {
if (!client) {
return undefined;
}
return client.stop();
}