diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2018-11-20 18:42:16 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2018-11-20 18:42:16 +0800 |
commit | dbfeeae74cb41edd1d7a1aa7d8d4fcdd2d9448a1 (patch) | |
tree | 65b77ae4e5a9c23400dc983f63b0b242a4a65b90 | |
parent | 67f6a20b27c98788843883c3712c648e110d781f (diff) | |
download | lua-language-server-dbfeeae74cb41edd1d7a1aa7d8d4fcdd2d9448a1.zip |
调试配置
-rw-r--r-- | .vscode/launch.json | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 8c53b75b..a6428c55 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -3,6 +3,36 @@ "version": "0.2.0", "configurations": [ { + "name": "测试", + "type": "lua", + "request": "launch", + "stopOnEntry": false, + "program": "${workspaceRoot}/server/test/main.lua", + "cwd": "${workspaceRoot}/server", + "env": { + "PATH": "${workspaceRoot}\\server\\bin\\" + }, + "luaRuntime": "5.3 32bit", + "luaexe": "${workspaceRoot}\\server\\bin\\lua.exe", + "luadll": "${workspaceRoot}\\server\\bin\\lua53.dll", + "path": "${workspaceRoot}/server/bin/?.lua", + "cpath": "${workspaceRoot}/server/bin/?.dll;", + "arg": [ + ], + "consoleCoding": "utf8", + "sourceCoding": "utf8" + }, + { + "name": "附加", + "type": "lua", + "request": "attach", + "stopOnEntry": true, + "sourceCoding": "utf8", + "consoleCoding": "utf8", + "ip": "localhost", + "port": 546858, + }, + { "type": "extensionHost", "request": "launch", "name": "Launch Client", |