diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2018-11-21 14:31:51 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2018-11-21 14:31:51 +0800 |
commit | a22e80df17fb02a9cfc16014aaa07519a2ff582f (patch) | |
tree | e70ab1eb3c689b182ead5d69bff85999b8e6ce90 /.vscode | |
parent | c6952e9b947375e05e807ff4a9d04052f8342501 (diff) | |
download | lua-language-server-a22e80df17fb02a9cfc16014aaa07519a2ff582f.zip |
调试配置
Diffstat (limited to '.vscode')
-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 99b82799..71f55595 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", |