summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2018-12-30 19:30:49 +0800
committer最萌小汐 <sumneko@hotmail.com>2018-12-30 19:30:49 +0800
commit6bb4eb555a8dae41da178f8fcec2e32b31848bda (patch)
tree49bd0561fc4c11f325b7a6e0c35973b5435a712a /client
parentdfbdcbd3f01602307f49f1af098899264d0162e7 (diff)
downloadlua-language-server-6bb4eb555a8dae41da178f8fcec2e32b31848bda.zip
改个名字
Diffstat (limited to 'client')
-rw-r--r--client/out/extension.js6
-rw-r--r--client/src/extension.ts4
2 files changed, 5 insertions, 5 deletions
diff --git a/client/out/extension.js b/client/out/extension.js
index e8bf742b..8210160e 100644
--- a/client/out/extension.js
+++ b/client/out/extension.js
@@ -14,7 +14,7 @@ function activate(context) {
// Otherwise the run options are used
let serverOptions = {
run: {
- command: context.asAbsolutePath(path.join('server', 'bin', 'lua.exe')),
+ command: context.asAbsolutePath(path.join('server', 'bin', 'lua-language-server.exe')),
args: [
'-E',
'-e',
@@ -26,7 +26,7 @@ function activate(context) {
}
},
debug: {
- command: context.asAbsolutePath(path.join('server', 'bin', 'lua.exe')),
+ command: context.asAbsolutePath(path.join('server', 'bin', 'lua-language-server.exe')),
args: [
'-E',
'-e',
@@ -60,4 +60,4 @@ function deactivate() {
return client.stop();
}
exports.deactivate = deactivate;
-//# sourceMappingURL=extension.js.map \ No newline at end of file
+//# sourceMappingURL=extension.js.map
diff --git a/client/src/extension.ts b/client/src/extension.ts
index e2c0b089..b46b5c2d 100644
--- a/client/src/extension.ts
+++ b/client/src/extension.ts
@@ -23,7 +23,7 @@ export function activate(context: ExtensionContext) {
let serverOptions: ServerOptions = {
run: {
command: context.asAbsolutePath(
- path.join('server', 'bin', 'lua.exe')
+ path.join('server', 'bin', 'lua-language-server.exe')
),
args: [
'-E',
@@ -41,7 +41,7 @@ export function activate(context: ExtensionContext) {
},
debug: {
command: context.asAbsolutePath(
- path.join('server', 'bin', 'lua.exe')
+ path.join('server', 'bin', 'lua-language-server.exe')
),
args: [
'-E',