summaryrefslogtreecommitdiff
path: root/client/out/extension.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/out/extension.js')
-rw-r--r--client/out/extension.js25
1 files changed, 7 insertions, 18 deletions
diff --git a/client/out/extension.js b/client/out/extension.js
index af5c2bf9..6fe820d8 100644
--- a/client/out/extension.js
+++ b/client/out/extension.js
@@ -13,24 +13,13 @@ function activate(context) {
// If the extension is launched in debug mode then the debug server options are used
// Otherwise the run options are used
let serverOptions = {
- run: {
- command: context.asAbsolutePath(path.join('server', 'bin', 'lua-language-server')),
- args: [
- '-E',
- '-e',
- 'LANG="' + language + '"',
- context.asAbsolutePath(path.join('server', 'main.lua'))
- ]
- },
- debug: {
- command: context.asAbsolutePath(path.join('server', 'bin', 'lua-language-server')),
- args: [
- '-E',
- '-e',
- 'LANG="' + language + '"',
- context.asAbsolutePath(path.join('server', 'main.lua'))
- ]
- }
+ command: context.asAbsolutePath(path.join('server', 'Windows', 'bin', 'lua-language-server')),
+ args: [
+ '-E',
+ '-e',
+ 'LANG="' + language + '"',
+ context.asAbsolutePath(path.join('server', 'main.lua'))
+ ]
};
// Options to control the language client
let clientOptions = {