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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
/* --------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* ------------------------------------------------------------------------------------------ */
import * as path from 'path';
import * as os from 'os';
import * as fs from 'fs';
import { workspace, ExtensionContext, env } from 'vscode';
import {
LanguageClient,
LanguageClientOptions,
ServerOptions,
} from 'vscode-languageclient';
let client: LanguageClient;
export function activate(context: ExtensionContext) {
let language = env.language;
// Options to control the language client
let clientOptions: LanguageClientOptions = {
// Register the server for plain text documents
documentSelector: [{ scheme: 'file', language: 'lua' }],
synchronize: {
// Notify the server about file changes to '.clientrc files contained in the workspace
fileEvents: workspace.createFileSystemWatcher('**/.clientrc')
}
};
let beta: boolean = workspace.getConfiguration("Lua.zzzzzz").get("cat");
let command: string;
let platform: string = os.platform();
switch (platform) {
case "win32":
command = context.asAbsolutePath(
path.join(
beta ? 'server-beta' : 'server',
'Windows',
'bin',
beta ? 'lua-beta.exe' : 'lua.exe'
)
);
break;
case "linux":
command = context.asAbsolutePath(
path.join(
beta ? 'server-beta' : 'server',
'Linux',
'bin',
beta? 'lua-beta' : 'lua'
)
);
fs.chmodSync(command, '777');
break;
case "darwin":
command = context.asAbsolutePath(
path.join(
beta ? 'server-beta' : 'server',
'macOS',
'bin',
beta? 'lua-beta' : 'lua'
)
);
fs.chmodSync(command, '777');
break;
}
let serverOptions: ServerOptions = {
command: command,
args: [
'-E',
'-e',
'LANG="' + language + '"',
context.asAbsolutePath(path.join(
beta ? 'server-beta' : 'server',
'main.lua'
))
]
};
client = new LanguageClient(
'Lua',
'Lua',
serverOptions,
clientOptions
);
client.start();
}
export function deactivate(): Thenable<void> | undefined {
if (!client) {
return undefined;
}
return client.stop();
}
|