diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2020-12-28 18:32:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-28 18:32:26 +0800 |
commit | 248ca2a2ba50f2c059d8ab2d3d5688584e98bf62 (patch) | |
tree | 6f95ef4e33b3eaae59b94ae685bb00bdaa074ca4 /.vscode | |
parent | 2d5b2cbfa492e80841d4e8822106434f7ee4f303 (diff) | |
parent | da147c565f28233720f934ba4228058b805568e1 (diff) | |
download | lua-language-server-248ca2a2ba50f2c059d8ab2d3d5688584e98bf62.zip |
Merge pull request #332 from uhziel/vscode-launch-test-in-linux-macos
让vscode'测试'操作可以在linux、macos环境下正常运行
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index dc0bef87..6567e714 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,6 +9,12 @@ "stopOnEntry": false, "program": "${workspaceRoot}/test.lua", "luaexe": "${workspaceFolder}/bin/Windows/lua-language-server.exe", + "linux": { + "luaexe": "${workspaceFolder}/bin/Linux/lua-language-server" + }, + "osx": { + "luaexe": "${workspaceFolder}/bin/macOS/lua-language-server" + }, "arg": [ ], "consoleCoding": "utf8", |